You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by bu...@apache.org on 2016/10/08 12:33:58 UTC

svn commit: r999056 - in /websites/staging/jena/trunk/content: ./ documentation/query/spatial-query.html

Author: buildbot
Date: Sat Oct  8 12:33:57 2016
New Revision: 999056

Log:
Staging update by buildbot for jena

Modified:
    websites/staging/jena/trunk/content/   (props changed)
    websites/staging/jena/trunk/content/documentation/query/spatial-query.html

Propchange: websites/staging/jena/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Sat Oct  8 12:33:57 2016
@@ -1 +1 @@
-1763245
+1763896

Modified: websites/staging/jena/trunk/content/documentation/query/spatial-query.html
==============================================================================
--- websites/staging/jena/trunk/content/documentation/query/spatial-query.html (original)
+++ websites/staging/jena/trunk/content/documentation/query/spatial-query.html Sat Oct  8 12:33:57 2016
@@ -329,7 +329,7 @@ You can simply add predicates to let jen
 </table>
 <p>See <a href="http://edndoc.esri.com/arcsde/9.1/general_topics/understand_spatial_relations.htm">ESRIs docs on spatial relations</a></p>
 <h2 id="spatial-dataset-assembler">Spatial Dataset Assembler<a class="headerlink" href="#spatial-dataset-assembler" title="Permanent link">&para;</a></h2>
-<p>The usual way to describe an index is with a <a href="http://jena.apache.org/documentation/assembler/index.html">Jena assembler description</a>. Configurations can also be built with <a href="#how-to-use-it-by-code">code</a>. The assembler describes a "spaital dataset" which has an underlying RDF dataset and a spatial index. The spatial index describes the spatial index technology (Lucene or Solr) and the details needed for for each.</p>
+<p>The usual way to describe an index is with a <a href="http://jena.apache.org/documentation/assembler/index.html">Jena assembler description</a>. Configurations can also be built with <a href="#how-to-use-it-by-code">code</a>. The assembler describes a "spatial dataset" which has an underlying RDF dataset and a spatial index. The spatial index describes the spatial index technology (Lucene or Solr) and the details needed for each.</p>
 <p>A spatial index has an 
 <a href="https://github.com/apache/jena/tree/master/jena-spatial/src/main/java/org/apache/jena/query/spatial/EntityDefinition.java">EntityDefinition</a>
 which defines the properties to index, the name of the lucene/solr field used for storing the URI itself (e.g. "entityField") and its geo information (e.g. latitude/longitude as "geoField"), and the custom geo predicates.</p>
@@ -362,7 +362,7 @@ You also optionally use JtsSpatialContex
 
 <span class="p">:</span><span class="n">spatial_dataset</span> <span class="n">rdf</span><span class="p">:</span><span class="nb">type</span>     <span class="n">spatial</span><span class="p">:</span><span class="n">SpatialDataset</span> <span class="p">;</span>
     <span class="n">spatial</span><span class="p">:</span><span class="n">dataset</span>   <span class="o">&lt;</span><span class="c">#dataset&gt; ;</span>
-    <span class="c">##spaital:index   &lt;#indexSolr&gt; ;</span>
+    <span class="c">##spatial:index   &lt;#indexSolr&gt; ;</span>
     <span class="n">spatial</span><span class="p">:</span><span class="nb">index</span>     <span class="o">&lt;</span><span class="c">#indexLucene&gt; ;</span>
     <span class="p">.</span>
 
@@ -400,7 +400,7 @@ You also optionally use JtsSpatialContex
 </pre></div>
 
 
-<p>Key here is that the assembler contains two dataset definitions, one for the spatial dataset, one for the base data. Therefore, the application needs to identify the text dataset by it's URI 'http://localhost/jena_example/#spatial_dataset'.</p>
+<p>Key here is that the assembler contains two dataset definitions, one for the spatial dataset, one for the base data. Therefore, the application needs to identify the text dataset by its URI 'http://localhost/jena_example/#spatial_dataset'.</p>
 <h2 id="working-with-solr">Working with Solr<a class="headerlink" href="#working-with-solr" title="Permanent link">&para;</a></h2>
 <p>Besides Lucene, jena-spatial can work with Solr for spatial query, powered by <a href="http://wiki.apache.org/solr/SolrAdaptersForLuceneSpatial4">Lucene / Solr 4 Spatial</a> and <a href="http://wiki.apache.org/solr/Solrj">Solrj</a>.</p>
 <p>It's required to add the field definitions for "entityField" and "geoField" respectively in <code>schema.xml</code> of Solr.