Skip to content

Commit

Permalink
atualiza slides
Browse files Browse the repository at this point in the history
  • Loading branch information
beatrizmilz committed Dec 10, 2023
1 parent 36527aa commit 52de5fc
Show file tree
Hide file tree
Showing 20 changed files with 59 additions and 46 deletions.
5 changes: 4 additions & 1 deletion pratica-parte-2.R
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,8 @@ plot(sigbm_brumadinho$geometry,
xlab = "long", ylab = "lat", add = T
)

readr::write_rds(uso_da_terra_classificado, "dados-output/uso_da_terra_classificado.rds")

# Vamos observar a área atingida pelo rompimento da Barragem 1 da Mina do Feijão
# fonte: IBGE (https://agenciadenoticias.ibge.gov.br/agencia-noticias/2012-agencia-de-noticias/noticias/23808-novos-dados-geoespaciais-mostram-area-atingida-pelo-rompimento-da-barragem)
dir("dados/Municipios_localidades_Afetados_MG/", pattern = ".shp")
Expand All @@ -182,11 +184,12 @@ barragem_vi <- sigbm_brumadinho |>
mapview(sigbm_brumadinho, color = "hotpink", col.regions = "hotpink") +
mapview(barragem_vi,
color = "red", col.regions = "red",
popup = leafpop::popupTable(barragem, # popup é uma função do pacote {leafpop}
popup = leafpop::popupTable(barragem_vi, # popup é uma função do pacote {leafpop}
zcol = c("texto")
)
) + # aprenda mais em: https://r-spatial.github.io/mapview/articles/mapview_04-popups.html#image-popups
mapview(rejeitos,
color = "coral",
popup = leafpop::popupImage(img, src = "remote")
)

79 changes: 46 additions & 33 deletions slides/index.html

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions slides/index_files/libs/quarto-html/popper.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion slides/index_files/libs/quarto-html/quarto-html.min.css
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/*# sourceMappingURL=0a6b880beb84f9b6f36107a76f82c5b1.css.map */

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
4 changes: 2 additions & 2 deletions slides/index_files/libs/revealjs/dist/theme/quarto.css

Large diffs are not rendered by default.

Empty file modified slides/index_files/libs/revealjs/plugin/markdown/plugin.js
100644 → 100755
Empty file.
Empty file modified slides/index_files/libs/revealjs/plugin/math/katex.js
100644 → 100755
Empty file.
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ var PdfExport = ( function( _Reveal ){
Reveal = _Reveal;
install();
};
Plugin.togglePdfExport = function () {
togglePdfExport();
};
}

return Plugin;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ window.QuartoLineHighlight = function () {
divSourceCode.forEach((el) => {
if (el.hasAttribute(kCodeLineNumbersAttr)) {
const codeLineAttr = el.getAttribute(kCodeLineNumbersAttr);
el.removeAttribute("data-code-line-numbers");
el.removeAttribute(kCodeLineNumbersAttr);
if (handleLinesSelector(deck, codeLineAttr)) {
// Only process if attr is a string to select lines to highlights
// e.g "1|3,6|8-11"
Expand Down Expand Up @@ -165,17 +165,17 @@ window.QuartoLineHighlight = function () {
if (typeof highlight.last === "number") {
spanToHighlight = [].slice.call(
codeBlock.querySelectorAll(
":scope > span:nth-child(n+" +
":scope > span:nth-of-type(n+" +
highlight.first +
"):nth-child(-n+" +
"):nth-of-type(-n+" +
highlight.last +
")"
)
);
} else if (typeof highlight.first === "number") {
spanToHighlight = [].slice.call(
codeBlock.querySelectorAll(
":scope > span:nth-child(" + highlight.first + ")"
":scope > span:nth-of-type(" + highlight.first + ")"
)
);
}
Expand Down

0 comments on commit 52de5fc

Please sign in to comment.