Skip to content

Commit

Permalink
Merge pull request #45 from petrbouchal/lkod-fix
Browse files Browse the repository at this point in the history
Lkod fix
  • Loading branch information
petrbouchal committed Sep 22, 2021
2 parents 7c94b3b + 19b8f27 commit 3cf6e80
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 109 deletions.
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: czso
Title: Use Open Data from the Czech Statistical Office in R
Version: 0.3.4.9000
Version: 0.3.5
Authors@R:
c(person(given = "Petr",
family = "Bouchal",
Expand Down Expand Up @@ -36,6 +36,5 @@ RdMacros:
lifecycle
Encoding: UTF-8
Language: en
LazyData: true
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.1
10 changes: 8 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
# czso (development version)
# czso 0.3.5

NOTE: there has been an unexpected change to the National Open Data Catalogue which caused problems with the dataset IDs returned by `czso_get_catalogue()`. This release provides a temporary fix based on a patch to the API kindly provided by the Czech Statistical Office.

Future releases will handle the change in a more robust way once the final form of the catalogue API is determined by the CZSO.

## Fixes to code that is currently not used but may be again as the dust settles:

* fix SPARQL query to return all datasets, incl. 2 that were not showing up compared to the official data catalogue web interface
* return label, rather than IRI, for temporal resolution
* return label, rather than IRI, for temporal resolution, in the output of `czso_get_catalogue()`

# czso 0.3.4

Expand Down
110 changes: 20 additions & 90 deletions R/core.R
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
#'
#' Retrieves a list of all CZSO's open datasets available from the Czech Open data catalogue.
#'
#' Use the dataset_id column as an argument to `get_czso_table()`.
#' Pass the string in the `dataset_id` column to `get_czso_table()`. `dataset_iri`
#' is the unique identifier of the dataset in the national catalague and also the URL
#' containing all metadata for the dataset.
#'
#' @return a data frame with details on all CZSO datasets available in the Czech National Open Data Catalogue.
#' The columns are fairly well described by their names, except:
Expand All @@ -24,95 +26,23 @@
#' }
czso_get_catalogue <- function() {

sparql_url <- "https://data.gov.cz/sparql"

sparqlquery_datasets_byczso <- stringr::str_glue(
"PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX dcat: <http://www.w3.org/ns/dcat#>
PREFIX skos: <http://www.w3.org/2004/02/skos/core#>
PREFIX schema: <http://schema.org/>
PREFIX ovmr: <https://rpp-opendata.egon.gov.cz/odrpp/zdroj/org\\u00e1n-ve\\u0159ejn\\u00e9-moci/>
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
SELECT ?dataset_iri
?dataset_id
?title
# ?provider
?description
?spatial
?temporal_res
# ?temporal
?modified
?page
?periodicity
# ?periodicity_abb
?start
?end
?keywords_all
WHERE {{
GRAPH ?g {{
?dataset_iri a dcat:Dataset .
?dataset_iri dcterms:publisher ovmr:00025593 .
?dataset_iri dcterms:publisher ?publisher .
?dataset_iri dcterms:title ?title .
?dataset_iri dcterms:description ?description .
OPTIONAL {{ ?dataset_iri dcterms:identifier ?dataset_id .}}
OPTIONAL {{ ?dataset_iri dcterms:spatial ?spatial .}}
OPTIONAL {{ ?dataset_iri foaf:page ?page .}}
OPTIONAL {{ ?dataset_iri dcterms:temporal ?temporal .}}
OPTIONAL {{ ?dataset_iri dcterms:modified ?modified .}}
OPTIONAL {{ ?dataset_iri dcat:keyword ?keywords_all .}}
# ?publisher foaf:name ?provider .
OPTIONAL {{ ?dataset_iri dcterms:accrualPeriodicity ?periodicity . }}
# OPTIONAL {{ ?periodicity ef:identifier ?periodicity_abb . }}
OPTIONAL {{ ?dataset_iri dcat:temporalResolution ?temporal_res . }}
OPTIONAL {{ ?temporal dcat:startDate ?start .}}
OPTIONAL {{ ?temporal dcat:endDate ?end .}}
# FILTER(lang(?provider) = \"cs\")
# FILTER(lang(?keywords_all) = \"cs\")
# FILTER(lang(?title) = \"cs\")
# FILTER(lang(?periodicity_abb) = \"en\")
}}
}}") %>% stringi::stri_unescape_unicode()

params = list(`default-graph-uri` = "",
query = sparqlquery_datasets_byczso,
# format = "application/sparql-results+json",
format = "text/csv",
timeout = 30000,
debug = "on",
run = "Run Query")
if(!curl::has_internet()) usethis::ui_stop(c("No internet connection. Cannot continue. Retry when connected."))
usethis::ui_info("Reading data from data.gov.cz")
cat_rslt <- httr::GET(sparql_url, query = params,
# accept("application/sparql-results+json"),
httr::user_agent(ua_string),
httr::add_headers(c("Accept-Charset" = "utf-8")),
httr::accept("text/csv;charset=UTF-8")) %>%
httr::stop_for_status()

# print(params$query)

if(httr::status_code(cat_rslt) > 200) {
print(httr::http_status(cat_rslt))
rslt <- httr::content(cat_rslt, as = "text")
} else
rslt <- cat_rslt %>% httr::content(as = "text")
rslt <- readr::read_csv(rslt, col_types = readr::cols(modified = "T"))
usethis::ui_done("Done downloading and reading data")
usethis::ui_info("Transforming data")
rslt <- dplyr::group_by(rslt, .data$dataset_iri) %>%
dplyr::mutate(keywords = stringr::str_c(.data$keywords_all, collapse = "; ")) %>%
dplyr::ungroup() %>%
dplyr::select(-.data$keywords_all) %>%
dplyr::distinct()
return(rslt)
suppressWarnings(readr::read_csv("https://vdb.czso.cz/pll/eweb/lkod_ld.seznam",
col_types = readr::cols(
dataset_iri = readr::col_character(),
dataset_id = readr::col_character(),
title = readr::col_character(),
provider = readr::col_character(),
description = readr::col_character(),
spatial = readr::col_character(),
modified = readr::col_date(format = ""),
page = readr::col_character(),
periodicity = readr::col_character(),
start = readr::col_date(format = ""),
end = readr::col_date(format = ""),
keywords_all = readr::col_character()
))) %>%
dplyr::mutate(periodicity = dplyr::recode(.data$periodicity, nikdy = "NEVER"))

}

#' Deprecated: use `czso_get_catalogue()` instead
Expand Down
17 changes: 3 additions & 14 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,15 @@
# Resubmission of patch version

Resubmitting because CRAN automated pre-check (Flavor: r-devel-linux-x86_64-debian-gcc) flagged a URL redirect uncaught by other checks. Now fixed.

## Notes on patch version submitted here:

Main change: correction of embedded SPARQL query to reflect changes in the data catalogue made by the data provide.

No changes to R code made in this version save for a bug fix where a namespace was missing from a function call.
Main change: update of one of the core functions to adapt to a change in the data provider API.

## Test environments

* local R installation on MacOS, R 4.0.4
* ubuntu 16.04 (on r-hub), R 4.0.4
* local R installation on MacOS
* ubuntu 16.04 (on r-hub)
* fedora-clang (devel on r-hub)
* windows (release and devel on win-builder, release on Github Actions)
* macOS (devel on Github Actions)

## R CMD check results

0 errors | 0 warnings | 0 notes

The install failed on these devel platforms:

- r-hub Windows devel - reports missing utf8 package.
- GHA MacOS devel - reports missing usethis package
4 changes: 3 additions & 1 deletion man/czso_get_catalogue.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3cf6e80

Please sign in to comment.