tarql中包含空格的列名

时间:2016-10-30 11:09:35

标签: csv sparql rdf triples

我正在使用tarql(https://github.com/tarql/tarql) - 使用sparql语法 - 将CSV数据转换为RDF三元组。

我有一个专栏名称"网站"。如何使用BIND函数绑定变量?我尝试了很多方法,但我没有找到解决方案:

BIND (?web site AS ?homepage)
BIND (?"web site" AS ?homepage)
BIND (?'web site' AS ?homepage)
BIND (?web\ site AS ?homepage)

所有导致解析错误。

1 个答案:

答案 0 :(得分:3)

当你必须处理复杂的情况时,我的建议是:首先尝试进行探索性测试;让我们看看例子:

假设您的源数据文件是:./table/table.csv,其中包含:

main index;web site;title, to translate
1;"ciao.ronda.com";"this is the first"
2;"miao.ronda.it";"this is the second"
3;"bao.ronda.uk";"this is the third"

第1步:探索性测试查询qstar.sparql

SELECT *
  FROM <file:table.csv#delimiter=%3B;>
  WHERE {}
  LIMIT 100

lancher示例:

#!/bin/bash -
table=./data/table.csv
query=./data/qstar.sparql 
./bin/tarql --test  --delimiter \; --header-row --verbose ${query} ${table} 

结果:

 $ ./launcher0.sh
--------------------------------------------------------
| main_index | web_site         | title,_to_translate  |
========================================================
| "1"        | "ciao.ronda.com" | "this is the first"  |
| "2"        | "miao.ronda.it"  | "this is the second" |
| "3"        | "bao.ronda.uk"   | "this is the third"  |
--------------------------------------------------------

现在我们知道使用这些选项计算的第三列变量名称是:title,_to_translate

step2:测试是否支持变量名称(在我们的示例中为title,_to_translate)支持BIND语句的语法

这里我们需要一个基于BIND示例的查询来理解问题;假设这是我们尝试使用名为?title,_to_translate

的字段的查询
SELECT ?homepage ?uri ?title_with_language_tag
  WHERE {
    BIND (?web_site AS ?homepage)
    BIND (URI(CONCAT('http://website.com/ns#', ?main_index)) AS ?uri)
    BIND (STRLANG(?title,_to_translate, 'en') AS ?title_with_language_tag)
  }

结果:

 $ ./launcher0.sh
com.hp.hpl.jena.query.QueryParseException: Lexical error at line 5, column 27.  Encountered: "t" (116), after : "_"
    at org.deri.tarql.TarqlParser.parse(TarqlParser.java:113)

简而言之,此查询包含ena.query.QueryParser

不支持的词法错误

在这种情况下,我宁愿采用一些解决方法而不是继续使用该语言进行斗争

第3步:解决方案有一点解决方法

让我们利用选项-H --no-header-row CSV file has no header row; use variable names ?a, ?b, ...并享受一个简单的解决方案;我们需要的就是从我们的源数据文件的内容中删除第一个头行(这是一个简单的任务,你可以流程到流程或按照你喜欢的方式),以方便测试我复制数据而没有第一列{ {1}}。

现在,对于解析器来说,相同的查询变得更容易; ./data/table0-noheader.csv

./data/query0.sparql

launcher-noheader.sh:

SELECT ?homepage ?uri ?title_with_language_tag
  WHERE {
    BIND (?a AS ?homepage)
    BIND (URI(CONCAT('http://website.com/ns#', ?b)) AS ?uri)
    BIND (STRLANG(?c, 'en') AS ?title_with_language_tag)
  }

结果:

!/bin/bash -
table=./data/table0-noheader.csv
query=./data/query0.sparql 
./bin/tarql --test  --no-header-row --delimiter \; --header-row --verbose ${query} ${table} 

请注意

  1. 参考文档: Header row, delimiters, quotes and character encoding in CSV/TSV files陈述了表达选项的所有可能方式和组合:是一个很好的阅读价值。

  2. 另一个有用的参考可能是: SPARQL 1.1查询语言

  3. 中的Possible names for variables