Skip to content

Instantly share code, notes, and snippets.

View JohannesFriedrich's full-sized avatar

JohannesFriedrich JohannesFriedrich

  • Bayreuth
  • 11:06 (UTC +02:00)
View GitHub Profile

Autobahn App API

Das BMVI hat eine völlig nutzlose App gebaut. Eine Autobahn-Info App.

Wirklich völlig nutzlos?

Nein, es gibt jetzt nämlich eine offene API für aktuelle Verwaltungsdaten in Bezug auf Baustellen-Informationen, Webcams, Parkplätze, … - bestimmt für jemand nützlich.

Endpunkte

library(tidyverse)
library(hystReet)
## Get locations
locations <- get_hystreet_locations()
Duesseldorf <- locations %>%
filter(city == "Düsseldorf")
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)
library(lubridate)
library(ggmap)
library(gganimate)
library(animation)
```
@JohannesFriedrich
JohannesFriedrich / 2017-12-20-SWU-Analysis.Rmd
Last active December 20, 2017 22:13
2017-12-20-SWU-Analysis
```{r setup, include=FALSE}
knitr::opts_chunk$set(collapse = TRUE,
cache = FALSE,
fig.pos = "center",
comment = "##",
fig.retina = 2,
fig.path = "img/SWU_Analysis/")
library(tidyverse)
library(rvest)