#install.packages("rgdal")
library(rgdal)
library(tidyverse)
+library(broom)
#install.packages("OpenStreetMap")
library(OpenStreetMap)
library(viridis)
# Read the shapefile obtained from WA opendata (SLIP)
shape <- readOGR(dsn = "data/", layer = "CurrentActiveSchoolsSemester12017_PublicDET_014")
-shape.df <- tidy(shape)
+# Suppress warning about no method existing for SpatialPointsDataframe - TODO use library sf
+shape.df <- suppressWarnings(tidy(shape))
shape.df$latitude <- as.numeric(as.character(shape.df$latitude))
shape.df$longitude <- as.numeric(as.character(shape.df$longitude))
shape.df$totalschoo <- as.numeric(as.character(shape.df$totalschoo))