R/read06.R

Defines functions read06

Documented in read06

#' @title Reads the candidacy info at municipality level files
#'
#' @param file Path to the .DAT file that begins with 06.
#'
#'  @return data.frame
#'
#' @importFrom utils download.file
#' @importFrom utils unzip
#'
#' @keywords internal
#'
read06 <- function(file, tempd) {
  ### Leo los ficheros DAT necesarios
  con <- file(file.path(tempd, file), encoding = "ISO-8859-1")
  df <- data.frame( value = readLines(con) )
  close(con)

  ### Separo los valores según el diseño de registro
  lineas <- df$value

  df$tipo_eleccion <- substr(lineas, 1, 2)
  df$anno <- substr(lineas, 3, 6)
  df$mes <- substr(lineas, 7, 8)
  df$vuelta <- substr(lineas, 9, 9)
  df$codigo_provincia <- substr(lineas, 10, 11)
  df$codigo_municipio <- substr(lineas, 12, 14)
  df$codigo_distrito <- substr(lineas, 15, 16)
  df$codigo_partido <- as.character(substr(lineas, 17, 22))
  df$votos <- as.numeric(substr(lineas, 23, 30))
  df$concejales_obtenidos <- as.numeric(substr(lineas, 31, 33))

  df <- df[, -1]

  return(df)
}
hmeleiro/elecciones documentation built on March 13, 2024, 7:09 a.m.