• Grelot Frederic's avatar
    geau Version 1.0.5.0 · 49795a94
    Grelot Frederic authored
    0 errors :heavy_check_mark: | 0 warnings :heavy_check_mark: | 0 notes :heavy_check_mark:
    
    - map_so_ii
    	- correction du thème hydro
    		- ajustement de detail en fonction de degre & type
    	- correction du thème collectivity
    		- traçacge du contour des communes par défaut
    	- amélioration de l'aide
    		- sous-section "year" dans details
    		- MAJ de sous-section "detail" dans details
    
    - so_ii_hydro dataset
    	- intégration des waterbody
    	- réorganisation des données
    		- degre pour niveau de détail seulement
    		- type pour type d'éléments
    
    Refs #6
    49795a94
so_ii_hydro.R 1.16 KiB
# code to prepare `so_ii_hydro` dataset goes here
selection = c("CdOH", "TopoOH")
file_dir = geau::current_version(
    "data-common/so-ii/topage",
    pattern = "^[0-9-]+$"
river = sf::st_read(file.path(file_dir, "cours_eau.shp"))
river = sf::st_transform(
    river[selection],
    sf::st_crs(geau::so_ii_limit)
names(river) = c("id", "name", "geometry")
classification = read.csv2(
    geau::current_version("data-common/so-ii/topage", pattern = "cours_eau"),
    colClasses = "character",
    row.names = 1
river = merge(river, classification)
waterbody = sf::st_read(file.path(file_dir, "plan_eau.shp"))
waterbody[["name"]] = gsub("C[?]ur", "Cœur", waterbody[["name"]])
classification = read.csv2(
    geau::current_version("data-common/so-ii/topage", pattern = "plan_eau"),
    colClasses = "character"
waterbody = merge(waterbody, classification)
so_ii_hydro = rbind(river, waterbody)
so_ii_hydro[["degre"]] = factor(so_ii_hydro[["degre"]])
so_ii_hydro[["type"]] = factor(so_ii_hydro[["type"]])
Encoding(waterbody[["name"]]) = "UTF-8"
# updating datasets
actual = setwd("geau")
usethis::use_data(so_ii_hydro, internal = FALSE, overwrite = TRUE)
setwd(actual)