We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add data from the swissvectormap dataset. There are two scales available:
The text was updated successfully, but these errors were encountered:
I inspected the data and narrowed it down to a smaller subset:
dataset 1:500'000:
from the 1:100'000 dataset:
for future reference, I used the following code to inspect the data:
library(sf) library(tidyverse) shapefiles <- list.files("C:/Users/rata/Downloads/SMV1000_SHAPE_CHLV95/20161001_SMV1000_SHAPE_CHLV95/Shapefiles",".shp$",full.names = T) # shapefiles <- list.files("C:/Users/rata/Downloads/SMV500_SHAPE_CHLV95/20161001_SMV500_SHAPE_CHL95/Shapefiles/",".shp$",full.names = T) shapefiles %>% map(~st_set_crs(read_sf(.x),2056)) %>% map2(.y = shapefiles, function(x,y){ bname <- strsplit(basename(y),split = "\\.")[[1]][1] p <- ggplot(x) + geom_sf() + labs(title = bname) strsplit(bname,split = ".")[[1]] ggsave(filename = paste0("C:/Users/rata/Temp/plots/",bname,".png"),plot = p) })
Sorry, something went wrong.
No branches or pull requests
Add data from the swissvectormap dataset. There are two scales available:
The text was updated successfully, but these errors were encountered: