1
vote
1answer
30 views

Querying Open Data Communities Data with SPARQL

I'm trying to get some information from the Lower Layer Super Output Areas (LSOAs) and UK Postcodes datasets. I need the postal code and lsoa information in a data dump for excel use. Notation and ...
0
votes
1answer
29 views

Sparql Select Query works on Sesame-Workbench but not on Java

I'm trying to create a Sparql-Query to get all messages, that are related to a lecture. I'm new at the whole 'semantic web'-story so be patient if the usage namespace is completely wrong. The query I ...
1
vote
2answers
57 views

Jena sparql update doesn't execute

the situation is simple, I have an RDF (N3) file that I want to upload into sparql-auth-endpoint. I use JENA ARQ, but unfortunatelly it doesn't work - it means I got no errors but the graph doesn't ...
0
votes
1answer
39 views

i need away to write rdf triples with Time attributes and make sparql query to get the time

i have triples: Fadi eat Apple. (subject = Fadi, predicate = eat, object = Apple). and i have the Time when fadi eat the Apple, its: 00:00:13 and i have the time when fadi ate the apple, its: 00:00:50 ...
0
votes
1answer
24 views

getting rdf xml:attribute in sparql query

Given This RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
1answer
46 views

sparql query about object to find another object

Given This RDF: <?xml version="1.0" encoding="utf-8"?><!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
3
votes
3answers
40 views

Testing the presence of a predicate in SPARQL

I have the following RDF model: @prefix : <http://test.com/#> . :graph1 :hasNode :node1 ; :centerNode :node1 . :graph1 :hasNode :node2 . :graph1 :hasNode :node3 . I ...
2
votes
2answers
42 views

Which .nt file from the DBpedia dataset contains the triples about DBpedia classes?

I am working on a DBpedia dataset and using Apache Jena to execute SPARQL over a local Jena TDB dataset. I have downloaded only some of the files from DBpedia Downloads so that I could keep the size ...
0
votes
1answer
41 views

dotnetrdf Graph Sparql query

with rdf triples like this: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
0
votes
1answer
27 views

What is Sparql Query to get Company and its subidiary through dbpedia triple store

I am new to RDF I am trying to get companies and number of its subsidaries through dbpedia I started with writing below queries in sparql at http://dbpedia.org/sparql or DBpedia SPARQL Explorer ...
0
votes
1answer
27 views

Unable to upload webdatacommons example file into OpenRDF Sesame 2.7.0 (seemingly) because of encoded Chinese characters

I just tried uploading the example webdatacommons RDF file Into Sesame 2.7.0 and get a message: "'洪雄熊' was not recognised as a language literal, and could not be verified, with language zh_tw ...
1
vote
1answer
71 views

Using GROUP BY, COUNT and SAMPLE in apache jena SPARQL

So I have an RDF schema that contains many "groups", and each of these groups has a "name", and contains a number of "elements". I need to select the name of every group, along with the number of ...
2
votes
1answer
39 views

SPARQL query on rdf:resource

Suppose I want to retrieve the names of all elements in the periodic table with a standard state of 'gas'. Here are what I believe are the relevant portions of the .owl file... <owl:Class ...
0
votes
1answer
50 views

using sparql with RDF Triples Files

Given This RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
1
vote
2answers
107 views

sparql querying RDF triples

Given this RDF: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE rdf:RDF [<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'> <!ENTITY rdfs ...
3
votes
1answer
112 views

Sparql queries over collection and rdf:containers?

Hi all rdf/sparql developpers. Here a question that have been nagging me for a while now but it seems nobody has answered it accurately since the rdf and sparql specifications have been released. To ...
0
votes
0answers
79 views

sesame/jetty server responding wrong content-type for a node.js http get request

var http = require('http') function getSPARQLResults(query_string, callback) { sparqlQ = getSPARQLPrefix() + query_string; var options = { host: 'localhost', port: 8080, path: ...
1
vote
1answer
38 views

Looking for a SPARQL query that creates a compact table

I have some RDF data that make use of the new Data Cube vocabulary. For visualization, I need the data as a flat and compact table. But I fail at finding the right SPARQL query that does this. I will ...
0
votes
1answer
41 views

how to retrieve data from SPARQL endpoint in json format bulit on visual studio 2010

i have an app which retrieves data from endpoint:http://dblp.l3s.de/d2r/snorql/, connection is made there,query is sent and results received. How do i receive the data in JSON format,the endpoint has ...
0
votes
1answer
56 views

SPARQL/RDF query: selecting an instance from a class

I'm new to Sparql and need some help. I have a class named "Learning_object" and a subclass named "General_characteristics" which has some properties (title, language and description). I have given ...
2
votes
1answer
43 views

SPARQL query rdf container (rdf: Bag)

I have this RDF <?xml version="1.0" encoding="UTF-8"?> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:com="http://www.example.com/com#"> <rdf:Description ...
2
votes
1answer
24 views

SPARQL Tracker Could not run update, Property not found in the ontology

tracker-sparql -qu "INSERT SILENT INTO <urn:uuid:38f> { <urn:uuid:38f> a nfo:FileDataObject , nie:InformationElement ;nie:isStoredAs <urn:uuid:38f> ; nie:url 'file.mp3' ; ...
1
vote
2answers
43 views

Specify multiple rdf:types in a SPARQL query

I have a SPARQL query like this PREFIX prefix: <http://example.org/ns#> SELECT * WHERE { ?x rdf:type ?type . } Suppose now I want to specify the type of ?type as being either ...
0
votes
0answers
32 views

Writing the sparql to get all carnivorous

I'm trying to get all the carnivorous from this ontology. The BBC page here enter link description here is build on this ontology. I'm no expert in sparql and rdf, can someone help me to write this ...
2
votes
1answer
75 views

Using DataTypeProperty literal in SPARQL query not working

I'm trying to execute a very simple SPARQL query to retrieve the nationality of a person based on a name passed in the query string, and I don't understand why it's not working. Here are the relevant ...
2
votes
1answer
75 views

SPARQL Query: How I get only a literal or string as result?

Data: <untitled-ontology-5:OperationName rdf:datatype="http://www.w3.org/2001/XMLSchema#string"> Adhesive Curing </untitled-ontology-5:OperationName> SPARQL Query: PREFIX ...
0
votes
1answer
32 views

Error in SPARQL Query

I'm getting an error with my SPARQL query but can't find it out: Query PREFIX owl: <http://www.w3.org/2002/07/owl#> PREFIX xsd: <http://www.w3.org/2001/XMLSchema#> PREFIX rdfs: ...
0
votes
1answer
53 views

DBpedia, get country of a site having a latitude and longitude

I want to get the Country which contains a latitude and longitude. Currently, I have the query below which works, SELECT DISTINCT ?lat,?long,?place WHERE { :Taj_Mahal dbpprop:latitude ?lat . ...
0
votes
1answer
33 views

DBpedia, getting the direct or indirect types of Place

I want to get only the direct or indirect subclass of http://dbpedia.org/ontology/Place SELECT DISTINCT ?type,?label WHERE { :Mauritius rdf:type ?type . ?type rdfs:label ?label . ...
1
vote
0answers
42 views

dbpedia sparql search similar to dbpedia lookup facility

Dbpedia offers a look up facility like http://lookup.dbpedia.org/api/search.asmx/KeywordSearch?QueryString=panda that returns a result set. Can the same result set be obtained by using sparql to query ...
1
vote
1answer
63 views

DBpedia Jena Query returning null

I'm just trying to run a small query on DBpedia, the query itself works, see it here, but I don't why its returning when doing so with Jena, I'm getting null. String service = ...
1
vote
1answer
94 views

Query cities and their country from dbpedia

I'm trying to construct an ontology in OWL for countries and cities(If such an implementation already exist, please point it to me) To get the data, I'm trying to use sparql with the following code: ...
3
votes
1answer
43 views

Select only the first object from sparql query

I would like to get Daft Punk's discography from dbpedia, and for each album I would like to show: 1) The title 2) The release year 3) The wikipedia page, so I wrote this query: PREFIX d: ...
1
vote
1answer
48 views

Which SPARQL implementation (triplestore) is ideal for read performance?

I'm new to RDf and I'm looking for an open source RDF databse, that has excellent read performance. There would be about 10 billion triples and 100+ SPARQL queries per second. Right now, I don't need ...
2
votes
1answer
26 views

Different result in DBPedia using WebClient and browser

I want to extract some information which exists in DBPedia. So, I've written an application using .NET's System.Net.WebClient which gets urls and returns the content of url in N-Triples format (plain ...
2
votes
1answer
47 views

STRAFTER SPARQL 1.1 function in Virtuoso

Does STRAFTER from SPARQL 1.1 work in Virtuoso (version 6.04 June 2012 build)? Trying PREFIX qb: <http://purl.org/linked-data/cube#> PREFIX iodp: ...
1
vote
1answer
141 views

How to convert a SPARQL query into an RDF file in Jena?

I am trying to output an RDF/XML file directly from an SPARQL query from an Oracle database. The query is working fine as I've verified the results in the ResultSet object. However, I'm not sure how ...
0
votes
1answer
35 views

How does a SPARQL endpoint work in a mashup scenario?

How does a SAPRQL endpoint work, especially when we have a mashup scenario? For example, I am mashing up two graphs. One is DBpedia and other is LMDB. Before it executes the SPARQL query, will it ...
5
votes
1answer
91 views

SPARQL DESCRIBE query

Seems I don't grok SPARQL DESCRIBE queries. I need to retrieve the full graphs of resources matching a condition. On one SPARQL endpoint I have tried (Norwegian Rådata Nå, ...
3
votes
1answer
83 views

Recursive queries in SPARQL to browse collections of collections

I am trying to create an RDF graph from a Mulgara RDF store, using a Sparql query to return results. I'm just beginning to get comfortable with simple queries, effectively asking, "which objects are ...
2
votes
2answers
164 views

A SPARQL Query to get my pizza's name

I am just a beginner in SPARQL and can write some basic queries. I have a pizza ontology in which there is one pizza whose properties are as follows: rdf:subClassOf NamedPizza hasTopping only ...
1
vote
1answer
50 views

Alternatives to SPARQL query with lots of UNIONs

I have some named graphs stored in Virtuoso, and I want to find the one that matches the highest number of terms from a provided list. My query is constructed programatically and looks like this: ...
2
votes
1answer
62 views

SparQL - list cities

I'm trying to list all the cities in Denmark from Wikipedia/dbpedia by using SPARQL. I've tried a lot of things and I can't get it to work. This is what I have come up with: SELECT * WHERE { ...
2
votes
1answer
49 views

Restrict SPARQL query to a certain kind of Class

I have a SPARQL query to select all resources that has the location "California" within the dbpedia database: select distinct ?subj where { ?subj dbpprop:location dbpedia:California . } LIMIT 100 ...
5
votes
1answer
57 views

Are there threaded SPARQL implementations?

We are building an iterative algorithm using a set of SPARQL queries for each iteration. This algorithm works great, but we're running into a CPU utilization issue. SPARQL engines like Fuseki are not ...
3
votes
1answer
80 views

Can these types of SPARQL queries be executed?

Supposed we have a huge RDF graph and want to do the following: (I tried it and it doesn't work - wanted to know if I am constructing the query incorrectly or some issue with the rdf dump). select ?n ...
1
vote
2answers
95 views

Sparql query for a model made of classes and properties, like freebase topics

ok it is difficult to find a title for this question...sorry...i'll try to better explain my problem! I have a graph and an ontology. I have hundreds models like Person, Animal, Book etc. and any of ...
1
vote
1answer
82 views

How can I filter disambiguated names in dbpedia

I am trying to use the following SPARQL query to find the Rhône department in France. SELECT * WHERE { ?x rdfs:label "Rhone"@en. ?x rdf:type dbpedia-owl:Place. ?x dbpedia-owl:abstract ...
3
votes
2answers
84 views

SPARQL counting occurences in multiple graphs

I'm trying to write a SPARQL query that counts the occurences of an object in multiple graphs. Sample data and expected output below: Named graph g1: @prefix g1: <http://example.com/g1#> . ...
3
votes
4answers
194 views

How to run a sparQL query?

I discovered the SparQL syntax at the Mozilla Festival 12. The demonstrator was using a proprietary web-based interface and I was wondering if there is open services or maybe (cross-platform) GUI ...

1 2 3 4 5