rdf

Querying Project Gutenberg catalog.rdf via SPARQL

Hello. I'm having difficulty structuring a SPARQL query for the Project Gutenberg catalog (available at Gutenberg Feeds toward the bottom of the page). I know it is a fundamental lack of understanding on my part of how SparQL/RDF/etc. actually work, conflating it with SQL, etc. But I've tried several tutorials, and I just can't quite ...

Generating RDF From Natural Language

Are there any tools available for generating RDF from natural language? A list of RDFizers compiled by the SIMILE project only mentions one, the Monrai Cypher. Unfortunately, it seems to have been a proprietary tool developed by Monrai Technologies, which has since disappeared, and I can't find any download links. Has anyone seen anythin...

Creating Java Classes from Ontology

Hi, I have an ontology file (in RDF) which expresses the entities in the app that I am writing. I am using Jena, and can access the Concepts and create/access the resources by directly manipulating triples. To make things easier, I created a set of Java classes, one for each type of resource in my ontology, keeping in mind their inherit...

Representing Natural Language as RDF

How much of the concepts conveyed in natural language is RDF/OWL able to represent? I'm still learning RDF and other semantic technologies, but as I currently understand it, information is typically represented as triples of the form (subject,predicate,object). So I can imagine how the sentence "Bob has a hat" might be represented. Howev...

Are there any relatively mature RDF/OWL Persistence Frameworks I can use?

I have looked at Elmo from openrdf.org, but it doesn't seem to support having object within another object. E.g. Class Roof within the Class House and then allow persisting House object. Is there any other fairly mature and better documented persistence framework out there for RDF/OWL data that will allow such operations? Or if not, i...

Graphic representation of instances in RDF (on website)

With Protege I made an ontology that has some classes and instances. Class "Knowledge" has a property "hasSubKnowledge" which domain and range are both of type "Knowledge". I have around 200 individuals of type "Knowledge". I made a JSP and my job is to somehow graphically represent my "Knowledge" tree (RDF). Is it possible that ontolog...

Perl : Error during installion of a module of CPAN

I run on Mac OS X 10.5 and I want to write a program in Perl. However, I need to install the module RDF::Trine and DBD::CSV and I got an error when I install both. If I write : install RDF::Trine The error is : Files=51, Tests=5, 2 wallclock secs ( 0.21 usr 0.18 sys + 1.30 cusr 0.51 csys = 2.20 CPU) Result: FAIL Failed 49/51 t...

CIM RDF and RDFS

On .NET platform: Has any body used RDFS Validation for CIM RDF/XML Files? Has anybody used RDFS Validation for RDF/XML Files? ...

Is it possible to query AllegroGraph using roqet?

I am trying to query AllegroGraph 4.0 using roqet to extract data in CSV. Is it possible? In roqet man page it is not clear if it can query a triple store besides rdf files. About AG HTTP protocol: http://www.franz.com/agraph/support/documentation/v4/http-protocol.html#header2-270 About roqet: http://librdf.org/rasqal/roqet.html Hello...

Implement a semantic search with in a web application

This web application is about posting different kind of posts to the web application where users can search those posts by a text-based search. Basically a post has following attributes. Title Description Category Budget Submit_date End_date Currently, Post content is store in sql server database under 'Post' table....

Neo4j vs OpenLink Virtuoso

I've been using OpenLink Virtuoso as an RDF store for some time now and although it's great with large data, I'm not satisfied with the graph traversal performance using SPARQL. Recently I've heard a lot about Neo4j's traversal performance and thought it's worth a try. So, for the purpose of having a large RDF store with good traversal ...

Loading verly large RDF file into openrdf Sesame ontology manager

Hi everyone, I need to load very large ontology represented as N-triples file(1gb) to the openrdf Sesame application. I'm using the workbench interface to do that. I know that this file is too big to be loaded in one request. To get around that, I splitted my files in files of size 100mb. But I still get a error form the openrdf Sesam...

Reading a Turtle/N3 RDF File with Python

I'm trying to encode some botanical data in Turtle format, and read this data from Python using RDFLib. However, I'm having trouble, and I'm not sure if it's because my Turtle is malformed or I'm misusing RDFLib. My test data is: @PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#&gt; . @PREFIX rdfs: <http://www.w3.org/2000/01/rd...

Why would one use RDF in a Web service definition?

I've been looking at the resources definition of the Change Management module of the OSLC. Why using RDF? Is this use related to semantic Web services? Thanks ...

how do i automatically add records with incremental values in rdf?

i want to record anonymous users 'liking' records: user:1 vocab:likes record:123234 . user:2 vocab:likes record:124534 . is there a way to add incremental values in rdf/turtle without explicitly stating them? thanks :) ...

how do i determine if a specific triple exists using sparql?

so, if the data set is: @prefix dc: <http://purl.org/dc/elements/1.1/&gt; . @prefix : <http://example.org/book/&gt; . @prefix ns: <http://example.org/ns#&gt; . :book1 dc:title "SPARQL Tutorial" . :book2 dc:title "The Semantic Web" . how do i check that the triple :book1 dc:title "SPARQL Tutorial" . exists? i can do SEL...

apply graph analysis on networked data represented with RDF

I want to run some analysis on networked data having multiple modes(i.e. multiple types of network nodes) and multiplex relations(i.e. multiples types of network edges). The analysis is probably about SNA or applying any algorithm from graph theory, e.g. tie strength, centrality, betweenness, node distance, block, cluster, etc. The sou...

rdf file and blackberry touch screen devices.

from rdf file http://www.blackberry.net/go/mobile/profiles/uaprof/9530/4.7.0.rdf how do we know that device is a touch screen device? ...

weighted RDF predicate (owl:ObjectProperty)

in RDF a statement is represented with S,P and O; In OWL the owl:ObjectProperty represents the predicate logic. (S) (P) (O) I like dog <owl:Class rdf:about="Person" /> <owl:NamedIndividual rdf:about="I"> <rdf:type rdf:resource="Person"/> <like rdf:resource="Dog"/> </owl:NamedIndividual> <owl:Class rdf:about="Pet" /> <ow...

How to set up a password for openrdf workbench?

I have successfully installed Openrdf Repository (sesame 2.3.2) and Openrdf workbench however I do not know how to set up a user and a password to protect Openrdf workbench. I suppose that there is --somewhere -- a configuration file. Can somebody give me a hint how to create a user and set up a password for openrdf workbench? ...