Skip to content

Commit

Permalink
adds 404 page
Browse files Browse the repository at this point in the history
  • Loading branch information
Nowosad authored and Robinlovelace committed Sep 6, 2021
1 parent e126a91 commit bc16ca3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions _404.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!-- You are nowhere! -->

```{r, echo=FALSE, message=FALSE, fig.asp=1}
library(tmap)
library(sf)
null_island = st_point(c(0, 0))
null_island = st_sfc(null_island, crs = 4326)
null_island = st_sf(name = "Null Island", geom = null_island)
tm_shape(null_island) +
tm_graticules(labels.col = "grey40") +
tm_text("name", size = 5, fontface = "italic") +
tm_layout(bg.color = "lightblue",
main.title = "You are here:",
main.title.color = "grey40")
```

0 comments on commit bc16ca3

Please sign in to comment.