From 2fe74042f648cb89526bc66138a4d84ed02dc177 Mon Sep 17 00:00:00 2001 From: clementinecttn Date: Wed, 14 Feb 2024 15:30:14 +0100 Subject: [PATCH] hide warning messages --- episodes/18-import-and-visualise-osm-data.Rmd | 4 ++++ episodes/19-basic-gis-with-r-sf.Rmd | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/episodes/18-import-and-visualise-osm-data.Rmd b/episodes/18-import-and-visualise-osm-data.Rmd index e59ee634..4c4ebc11 100644 --- a/episodes/18-import-and-visualise-osm-data.Rmd +++ b/episodes/18-import-and-visualise-osm-data.Rmd @@ -21,6 +21,10 @@ After completing this episode, participants should be able to… :::::::::::::::::::::::::::::::::::::::::::::::: +```{r setup, include=FALSE} +knitr::opts_chunk$set(warning = FALSE, message = FALSE) +``` + ## What is OpenStreetMap? OpenStreetMap (OSM) is a collaborative project which aims at mapping the world and sharing geospatial data in an open way. Anyone can contribute, by mapping geographical objects they encounter, by adding topical information on existing map objects (their name, function, capacity, etc.), or by mapping buildings and roads from satellite imagery (cf. [HOT: Humanitarian OpenStreetMap Team](https://www.hotosm.org/)). diff --git a/episodes/19-basic-gis-with-r-sf.Rmd b/episodes/19-basic-gis-with-r-sf.Rmd index 3af14182..669b18c8 100644 --- a/episodes/19-basic-gis-with-r-sf.Rmd +++ b/episodes/19-basic-gis-with-r-sf.Rmd @@ -20,6 +20,10 @@ After completing this episode, participants should be able to… - Map the results :::::::::::::::::::::::::::::::::::::::::::::::: +```{r setup, include=FALSE} +knitr::opts_chunk$set(warning = FALSE, message = FALSE) +``` + ```{r message=FALSE} library(tidyverse)