# Lendo os dados
library(readxl)
dados_pontos <- read_excel("dados/queimadas/queimadas_pontos.xlsx")
head(dados_pontos)# A tibble: 6 × 2
latitude longitude
<dbl> <dbl>
1 -22.6 -42.1
2 -22.6 -42.1
3 -22.7 -43.3
4 -22.6 -42.1
5 -22.7 -43.8
6 -21.1 -42.0







