Created
April 17, 2020 08:50
-
-
Save mhermans/bdb1b9f973e994048de3dbbe9fb2a66d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(sf) | |
library(mapview) | |
library(tmap) | |
library(dplyr) | |
bodemkaart <- st_read('/home/rstudio/var/data/20170710_bodemkaart_2_0_download/shape/20170710_bodemkaart_2_0.shp') | |
#mapview(bodemkaart) => laat te traag | |
bebouwing <- bodemkaart %>% | |
filter(Type == 'bebouwde zones') | |
mapview(bebouwing) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment