fuseki

How to find the Polygons Intersection inside Apache Fuseki Server?

梦想的初衷 提交于 2020-04-17 21:36:42
问题 I am using Apache Jena Fuseki Server for Storing Geo Coordinates of location. How to find out that if two polygons or two rectangles intersect each other inside Fuseki. Please share links related to it if possible. Thank you. 来源: https://stackoverflow.com/questions/61187841/how-to-find-the-polygons-intersection-inside-apache-fuseki-server

How to find the Polygons Intersection inside Apache Fuseki Server?

笑着哭i 提交于 2020-04-17 21:30:48
问题 I am using Apache Jena Fuseki Server for Storing Geo Coordinates of location. How to find out that if two polygons or two rectangles intersect each other inside Fuseki. Please share links related to it if possible. Thank you. 来源: https://stackoverflow.com/questions/61187841/how-to-find-the-polygons-intersection-inside-apache-fuseki-server

How to find the Polygons Intersection inside Apache Fuseki Server?

笑着哭i 提交于 2020-04-17 21:29:13
问题 I am using Apache Jena Fuseki Server for Storing Geo Coordinates of location. How to find out that if two polygons or two rectangles intersect each other inside Fuseki. Please share links related to it if possible. Thank you. 来源: https://stackoverflow.com/questions/61187841/how-to-find-the-polygons-intersection-inside-apache-fuseki-server

configure fuseki with TDB2 and OWL Reasoner

浪子不回头ぞ 提交于 2020-03-23 04:27:06
问题 New to fuseki/jena here. I managed to get fuseki to run with OWLFBRuleReasoner using tdb1 no problem, but can't make it work with tdb2 (http://jena.apache.org/2016/tdb#). I could not find an explicit example of configuration that uses both TDB2 and OWLFBRuleReasoner, so I just converted this one (that works) @prefix : <http://base/#> . @prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ja: <http://jena.hpl.hp.com/2005/11

sparql group by and order by: not ordered

浪子不回头ぞ 提交于 2020-01-15 10:48:11
问题 I follow up on query where the schema.org database is used to find the number of children of a class - as a simpler database than my application. I want to get the names of the children concatenated in alphabetic order. The query prefix schema: <http://schema.org/> prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> select ?child (group_concat (?string) as ?strings) where { ?child rdfs:subClassOf schema:Event . ?grandchild rdfs:subClassOf ?child . bind (strafter(str(?grandchild), "http:/

How do you create a Fuseki SPARQL server using the Apache Jena Java API?

回眸只為那壹抹淺笑 提交于 2020-01-15 04:10:09
问题 I am trying to create a Fuseki SPARQL server on my machine. The documentation on the Jena website describes how to create such a server from the command-line, here: http://jena.apache.org/documentation/serving_data/. I am looking for a way of creating and initializing such a server just using the Jena Java API. I have looked over the Jena API but have not made any progress in working out how to proceed. Has anyone done this before? 回答1: Yes this is possible but it is not how Fuseki was

How do I interact with Apache Jena locally? - MacOS

时间秒杀一切 提交于 2020-01-06 07:18:09
问题 I may just be going at this wrong, but I am not sure how to interact with Apache Jena on my computer. I think my main question revolves around where I store files and how I run them. I use Atom editor and work in Python and Javascript normally. My goal here is to get a handle of how Jena and Fuseki work then potentially using Fuseki for the backend of a web app. The tutorial, An Introduction to RDF and the Jena RDF API, links to Java files. Where do I store this file on my desktop and how can

How to list and count the different types of node and edge entities in the graph data using SPARQL query?

江枫思渺然 提交于 2019-12-31 03:02:52
问题 I'm looking to provide some summary stats for a data set and I want to list the different types of edge entities and node(vertex) entities in the graph. For example: -> In Twitter Social network graph of users and following relationship (Homogeneous graph), there is only one type of vertex entity (user), but in heterogeneous graphs such as ConceptNet data, it will have multiple values. -> The edge entities can be computed by just counting the different number of predicates I believe using the

Reasoning with Fuseki, TDB and named graphs?

霸气de小男生 提交于 2019-12-30 09:31:57
问题 I'm serving a dataset containing 10-20 named graphs from a TDB dataset in Fuseki 2. I'd like to use a reasoner to do inference on my data. The behaviour I'd like to see is that triples inferred within each graph should appear within those graphs (although it would be fine if the triples appear in the default graph too). Is there a simple way of configuring this? I haven't found any configuration examples that match what I am trying to do. The configuration I've tried is very similar to the

Fuseki owl reasoner not working with TDB

半世苍凉 提交于 2019-12-23 23:24:31
问题 This is my configuration file # Licensed under the terms of http://www.apache.org/licenses/LICENSE-2.0 ## Fuseki Server configuration file. @prefix : <#> . @prefix fuseki: <http://jena.apache.org/fuseki#> . @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ja: <http://jena.hpl.hp.com/2005/11/Assembler#> . @prefix tdb: <http://jena.hpl.hp.com/2008/tdb#> . [] rdf:type fuseki:Server ; fuseki:services ( <#service1> ) . #