Skip to content

Namespace prefix handling

timrdf edited this page Feb 11, 2011 · 22 revisions

By adding prefixes into the parameters Turtle file

:term_Mapping_2
   owl:annotatedTarget <http://knoesis.wright.edu/provenir/provenir.owl#process> ;

add:

@prefix provenir:   <http://knoesis.wright.edu/provenir/provenir.owl#> .

result:

:term_Mapping_2
   owl:annotatedTarget provenir:process ;

By encoding it as actual parameters

done, but fill out an example.

What namespace prefixes do conversions use?

See Aggregating subsets of converted datasets for more queries against aggregated datasets.

results

PREFIX vann:       <http://purl.org/vocab/vann/>
PREFIX conversion: <http://purl.org/twc/vocab/conversion/>

SELECT distinct ?namespace ?prefix
WHERE {
  GRAPH <http://logd.tw.rpi.edu/vocab/Dataset>  {
    [] vann:preferredNamespacePrefix ?prefix;
       vann:preferredNamespaceUri    ?namespace
  }
} order by ?namespace ?prefix

Clone this wiki locally