You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
brasil_alterado <- brasil |> as.data.frame() |> dplyr::select(-geometry) |> dplyr::mutate(x = brasil_coordenadas[, 1], y = brasil_coordenadas[, 2])
O csv está anexo, caso seja útil.
O @denis-or observou que em 2021 houve alteração dos limites municipais e atualmente são 5572 municípios.
O arquivo https://github.com/curso-r/munifacil/blob/main/inst/depara_muni_codigo.csv tem colunas
existia_
para 1991, 2000, e 2010. Seria o Censo? Se sim, uma tarefa seria atualizar essa tabela depara_muni_codigo.Em 2021 teve alteração nos limites municipais. Atualmente são 5572 municípios. O IBGE tem o arquivo shapefile disponível neste link: https://www.ibge.gov.br/geociencias/organizacao-do-territorio/malhas-territoriais/15774-malhas.html?=&t=downloads
Seguir o caminho:
-> municipio_2021
-> Brasil
-> BR
-> Br_municipios_2021.zip
O arquivo shapefile é um polígono. Usei os códigos abaixo pra extrair as coordenadas:
brasil_coordenadas <- shape_brasil |> sf::st_point_on_surface() |> sf::st_coordinates()
brasil_alterado <- brasil |> as.data.frame() |> dplyr::select(-geometry) |> dplyr::mutate(x = brasil_coordenadas[, 1], y = brasil_coordenadas[, 2])
O csv está anexo, caso seja útil.
brasil_coordenadas_2021.csv
Originally posted by @denis-or in #9 (comment)
The text was updated successfully, but these errors were encountered: