X-Git-Url: http://git.vanrenterghem.biz/R/project-wa-schools.git/blobdiff_plain/fd7b9fd6a913d9a4156470b4941376a079b09219..ea074082794a3152e66011699979b219bf593dd7:/WA_active_schools.R diff --git a/WA_active_schools.R b/WA_active_schools.R index 7792496..394fa83 100644 --- a/WA_active_schools.R +++ b/WA_active_schools.R @@ -2,13 +2,15 @@ #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))