Hi I want to add spatial based triple
http://www.izmirdeafet.com/Disaster htp://www.opengis.net/ont/geosparql#asWKT> "htp://www.opengis.net/def/crs/OGC/1.3/CRS84 POINT (8.46035239692792 51.48661096320327)"^^<http://www.opengis.net/ont/sf#wktLiteral>
into parliament triple store with jena
library in the below java code but ı have taken error in the below. I have spatial based ontology which ı add already into triple store.
public static void main(String[] args) {
// set to false when running the second time to avoid recreating the graphs/index
boolean firstTime = true;
// create spatial index factory and configure for GeoSPARQL. This is used
// by the GraphStore whenever a new named graph is created.
SpatialIndexFactory factory = new SpatialIndexFactory();
Properties properties = new Properties();
properties.setProperty(Constants.GEOMETRY_INDEX_TYPE,
Constants.GEOMETRY_INDEX_RTREE);
properties.setProperty(Constants.GEOSPARQL_ENABLED,
Boolean.TRUE.toString());
factory.configure(properties);
// register factory
IndexFactoryRegistry.getInstance().register(factory);
// create a Parliament graph and graph store
//KbGraph graph= KbGraphFactory.createNamedGraph();
KbGraph graph =
KbGraphFactory.createDefaultGraph("file:C:\\ParliamentKB\\data\\");
KbGraphStore graphStore = new KbGraphStore(graph);
graphStore.initialize();
if (firstTime) {
// create spatial index from factory
SpatialIndex index = factory.createIndex(graph, null);
// register index with IndexManager
IndexManager.getInstance().register(graph, null, factory, index);
// the following tells the graph store that the graph is now an
// indexing graph. This is necessary so that the next time Parliament
// loads, the index is read in automatically.
graphStore.setIndexingEnabled(KbGraphStore.DEFAULT_GRAPH_NODE, true);
}
// create a Jena model
Model model = ModelFactory.createModelForGraph(graph);
// load data
String fileName =
"C:\\Users\\Can\\Desktop\\DisasterOntologyEnglish\\disaster.rdf";
RDFFormat dataFormat = RDFFormat.parseFilename(fileName);
FileManager.get().readModel(model, fileName, dataFormat.toString());
// get index and print size
System.out.println(IndexManager.getInstance().
getIndexes(graph).get(0).size());
// do a spatial query
String query = ""
+ "\nPREFIX my: <http://somewhere/ApplicationSchema#>"
+ "\nPREFIX geo: <http://www.opengis.net/ont/OGC-GeoSPARQL/1.0/>"
+ "\nPREFIX geof:
<http://www.opengis.net/def/queryLanguage/OGC-GeoSPARQL/1.0/function/>"
+ "\nSELECT ?f" + "\nWHERE { my:A my:hasExactGeometry ?aGeom ."
+ "\n ?aGeom geo:asWKT ?aWKT ."
+ "\n ?f my:hasExactGeometry ?fGeom ."
+ "\n ?fGeom geo:asWKT ?fWKT ."
+ "\n FILTER (geof:sf-contains(?aWKT, ?fWKT) &&"
+ "\n !sameTerm(?aGeom, ?fGeom)) " + "\n}";
Query q = QueryFactory.create(query, Syntax.syntaxARQ);
ResultSet rs = QueryExecutionFactory.create(q, model).execSelect();
while (rs.hasNext()) {
System.out.println(rs.nextSolution());
}
}
ERROR
Exception in thread "main" java.lang.UnsatisfiedLinkError:
no Parliament in java.library.path
at java.lang.ClassLoader.loadLibrary(Unknown Source)
at java.lang.Runtime.loadLibrary0(Unknown Source)
at java.lang.System.loadLibrary(Unknown Source)
at com.bbn.parliament.jni.Config.<clinit>(Config.java:184)
at com.bbn.parliament.jena.graph.KbGraphFactory.getKbConfigForDefaultGraph
(KbGraphFactory.java:81)
at com.bbn.parliament.jena.graph.KbGraphFactory.createDefaultGraph
(KbGraphFactory.java:38)
at com.disaster.demo.GeoSPARQLTest.main(GeoSPARQLTest.java:46)
I think problem is coming from createdefaultgraph
part:
you said dir path taken from ParliamentConfig.txt
KbGraph graph = KbGraphFactory.createDefaultGraph("file:C:\\ParliamentKB\\data\\");
I coded like this but it didnt work.
The unsatisfied link error probably indicates that it can't find Parliament.dll in the java path.
Check this SO for details about dll's in the java path: java.lang.UnsatisfiedLinkError no *****.dll in java.library.path
Also, are you following the Parliament setup guide? http://parliament.semwebcentral.org/ParliamentUserGuide.pdf
You also might want to make sure you're using the right dll... it's been a while so I may be wrong, but I think there's 32 and 64 bit builds.