The Resource Description Framework (RDF) is a language for representing information about resources in the World Wide Web. It is a syntax independent data model that may be serialised in a variety of concrete syntaxes. RDF is the core data format used on the Semantic Web.
1
vote
1answer
56 views
RDF+XML response - xml version tag is missing
I've a sevlet in Java which create a RDF/XML-ABBREV model. My problem is that the response doesn't contain the xml version tag.
Current response:
<rdf:RDF
...
1
vote
1answer
59 views
n3 inferencing applying str:contains to xsd:string in EulerSharp
I have a dataset that contains a large number of resources I need to
reconcile against various existing data. The most straight forward
approach is to do some simple string comparisons between various
...
2
votes
1answer
53 views
How is the RDF based Heterogeneous Relational Database Integration work?
My Question is how I can integrate two Heterogeneous Relational Databases based on RDF? Is that done just by transferring the two relational databases, one by one separately into RDF statements, and ...
2
votes
1answer
58 views
Ontology for Adresses
I need to create an ontology for scheduling. I use FOAF and Time OWL for storing participants and times, but I also need to store the place, where an appointment take place: the address. Ontologies ...
0
votes
0answers
43 views
save a new RDF document with graphite
I'm new to semantic web, and I'm going to build a semantic web application with PHP. I'm using Graphite and ARC library, but I can't find any good tutorial about how create and save a new RDF ...
0
votes
0answers
67 views
How to create a class in model to represent resource and property in jena RDF(using RDFS not OWL)
I have very little knowledge regarding jena rdf, so if I misspell please correct me.
I have to create a model in database and also class to represent multiple resources (creates and add resource to ...
1
vote
1answer
106 views
Converting any RDF serialization into RDF/XML
I have seen some examples where there is a possibility to convert known serializations in RDF/XML but when the input format (e.g. XML/Turtle/N3) is not known, is there any way of achieving the ...
5
votes
1answer
63 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 ...
1
vote
1answer
85 views
Parsing N-Triples Via Streaming
I was fairly confused about this for some time but I finally learned how to parse a large N-Triples RDF store (.nt) using Raptor and the Redland Python Extensions.
A common example is to do the ...
1
vote
1answer
67 views
Commercial RDF Visualization tool?
I was wondering if anybody is aware of a commercial RDF Visualization Tool?
There are a number of posts on SO about RDF visualization tools, but most of them seem to be open source projects.
0
votes
1answer
145 views
How to modify Firefox's MimeTypes.rdf with dotNetRDF?
For each content type Firefox recognizes, you may select an action that Firefox will use to handle that type of content. It stores these actions in a file called MimeTypes.rdf.
How can I modify this ...
-1
votes
2answers
125 views
Read XML+RDF document from php
i got this XML example that i extract from a cellphone when it surfs in my website, now i need to extract the parameters < prf:ScreenSize>320x240< /prf:ScreenSize> and all the < rdf:li> from ...
0
votes
1answer
33 views
How does one retrieve a saved RDF::Redland persistent store?
The Redland library and the RDF::Redland bindings for Perl are very well documented when it comes to creating a persistent store and a model and parsing an RDF/XML file into it, for instance here and ...
0
votes
1answer
39 views
Improvements needed on tranforming Relational Database to RDF? [closed]
I'm doing a project to transform the Relational Database to RDF database to support the semantic web and ontology.
I found many approached for doing that, and some tools. For who have an experience ...
3
votes
1answer
90 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
102 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 ...
2
votes
1answer
114 views
Parsing large NTriples File Python
I am trying to parse a rather large NTriples file using the code from Parse large RDF in Python
I installed raptor and the redland-bindings for python.
import RDF
parser=RDF.Parser(name="ntriples") ...
0
votes
1answer
40 views
Redland context in Virtuoso
I'm using the Redland Python bindings to add triples to Virtuoso RDF.Storage(storage_name='virtuoso') and am trying to understand how context is implemented. I am getting some surprising results.
If ...
1
vote
1answer
84 views
sesame rdfstore named graphs
I am using sesame HTTP api with its in-memory rdf store.
I load data/triples in a context/named graph
I query using named graph/context
I have 2 questions:
In the same repository, can a graph ...
0
votes
1answer
58 views
building raptor RDF from Source on OSX
I am trying to build the Raptor RDF Syntax Library.
I can successfully install it using homebrew but would like to build from source instead.
However,
LIBTOOLIZE=/usr/bin/glibtoolize ./autogen.sh
...
1
vote
1answer
100 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 ...
1
vote
1answer
129 views
RDF and microdata future
What should we expect from RDF and microdata in the future? Is microdata able to completely replace RDF, is this the goal? Or are they meant to exist side by side? Should we have both on our sites ...
0
votes
1answer
99 views
Jena Rules: How to perform literal value type conversion from float to double (and vice versa)?
I have the following Jena Rule to perform addition:
@prefix pm: <http://example.org/ProductionMesure#>.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix owl: ...
3
votes
2answers
105 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#> .
...
5
votes
0answers
99 views
Reasoning of Semantic web in Distributed systems
I want to use WebPie reasoner over Hadoop platform. I have already implemented Hadoop structure with two Ubuntu virtual machines and it’s functioning well. When I want to use WebPie to do reasoning ...
3
votes
4answers
225 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 ...
2
votes
1answer
70 views
How can I expose data in a Relational Database to the Semantic Web? [closed]
How can I expose the data in a relational database to the Semantic Web?
Should the data be transformed to an RDF serialization? Or are there ways to expose the relational data to the Semantic Web ...
1
vote
1answer
103 views
Query city/state/country abstracts in English
I am trying to query city, state and country abstracts in English from DBpedia with mixed results. It seems to work well with City and Country but not with State.
SELECT * WHERE {
?x rdfs:label ...
1
vote
3answers
193 views
Inconsistent OWL ontology and bad individuals in Protege 4.1
I designed for homework an OWL ontology using Protege 4.1 about creatures (creatures classification), after reasoning with Hermit or Fact i'm getting inconsistent ontology, bad individuals, but I'm ...
0
votes
0answers
77 views
MINUS or NOT EXIST in SPARQL
I have a query and want NOT to show some information
SELECT ?Recipe
WHERE {
?Ingredient <http://linkedrecipes.org/schema/ingredientOf> ?Recipe .
MINUS {
...
2
votes
1answer
99 views
Populating RDFS Ontology from RDF data
I am new to the ontology field. My question is a clarification one rather than a problem.
The information that am dealing with is written in RDF format. I built my own RDFS ontology and I want to ...
5
votes
2answers
146 views
Library for working with different Ontologies without changing codebase
I'm working on my graduation thesis and my project consists on the extraction of knowledge from documents containing parsed comments about products or services, using ontologies to indicate the ...
1
vote
3answers
248 views
Example ontology for the medical domain
I am searching for a clear example ontology respective to the medical domain. Maybe to show some reasoning. Or has anyone a good idea for a small medical example which I can implement with Protégé?
...
4
votes
3answers
282 views
What is the relationship between RDF, RDFa, Microformats and Microdata
I've done quite a bit of research but I can't understand the exact relationship between the 3. Also, now that W3C has officially recognised RDFa, would you recommend it over Microdata, taking into ...
3
votes
1answer
46 views
SWI-Prolog semweb_db's rdf predicate gives nothing
With SWI-Prolog (Multi-threaded, 64 bits, Version 5.10.4) in Ubuntu, I am trying to get
rdf triples from the rdf/3 predicate, following one of the tutorials (actually, all of them
tell me the same, ...
1
vote
1answer
180 views
How to Define My Own Ranges for OWL DataProperties
I have recently started learning Web Ontology Language. I want to define a DataProperty with my own defined range of value.
Consider the following property:
<owl:DatatypeProperty ...
2
votes
1answer
81 views
semantic web: distance between music entities and music recommendation
I have a music ontology populated by music artists, releases and musics. Each artists has a similar to relation with other artists and i need to find a way to generate music recomendations. I've ...
2
votes
2answers
54 views
RDF in non Semantic Web activities
We know that RDF is the cornerstone for Semantic Web.So we can use RDF for describing electronic libraries, content for search engines, time schedules for web events etc. However, can we use the RDF ...
0
votes
2answers
143 views
I'm using Jena to import a skos thesaurus and it doesn't work [duplicate]
Possible Duplicate:
org.xml.sax.SAXParseException: Content is not allowed in prolog
I would like to import a skos (rdf/xml) thesaurus in Jena model. The skos thesaurus is available in ...
2
votes
1answer
118 views
2
votes
2answers
73 views
Prefix namespace in RDF
I have this RDF statement (turtle format):
@prefix cd: <http://mai.com/contactwrapper/0.1#> .
<http://mai.com/contactwrapper/0.1#malzaa@m.com>
cd:Belongs_To "1"^^xmls:string ;
...
0
votes
1answer
46 views
How to combine Data Properties in OWL?
Say I have:
Property1 is optional
Property2 that is always defined
I want to define TrueProperty that is equal to:
Property1 if Property1 is present
Property2 otherwise
Property2 otherwise
...
1
vote
1answer
88 views
Issues with correct formatting/indentation in XSLT to RDF
I'm having some issues with incorrect XSLT display.
My task is to convert an XML file to an RDF file using XSLT. Therefore, I'd have to create a <rdf:RDF> node with the relevant namespaces, as ...
2
votes
2answers
171 views
Did Freebase release a RDF dump recently?
I recently saw on Freebase wiki that they released a RDF dump of their data. Does this data have the complete dump of their graph including metaschema? If so, is there any documentation on how to load ...
-1
votes
1answer
104 views
Get data from rdf file [duplicate]
Possible Duplicate:
Java - Using Jena APi - Get data from RDF file
I'm using Java and Jena API.
I have the class Person with the datatype properties hasFirstName, hasLastName, ...
1
vote
1answer
365 views
Java - Using Jena APi - Get data from RDF file
My question concerns the class Person with the datatype properties hasFirstName, hasLastName, hasDateOfBirth, hasGender.
I'm using Java and Jena API.
Here is how one person is represented in my RDF ...
6
votes
2answers
424 views
Where do I test my queries for my RDF written in SPARQL
I am a beginner with Semantic Web technologies, My question might be a very basic one but I am really stuck figuring it out.
I have a RDF file I created from an XML and have validated it using w3.org ...
0
votes
2answers
100 views
how to store N-triple rdf in triple store and querying SPARQl
I am trying to try out storing N-triple and querying them. What is the simplest way to store N-triple in triple store or rather the simplest server do that.
I would highly appreciate help in this.
0
votes
1answer
41 views
How to validate whether a string is a dateTime object or not?
I get some invalid dateString from freebase data.
Output of the following sparql query is
Query:
select ?dob dataType(?dob) as ?dataType {
<http://freebase.com/ns/m/011k9p> ...
1
vote
1answer
55 views
Virtuoso 22007 Error DT006 (How to validate datetime object in sparql)
I get the following error.
Virtuoso 22007 Error DT006: Cannot convert -0359 to datetime : Incorrect month field length
SPARQL query:
define sql:big-data-const 0
#output-format:text/html
define ...

