You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by jp...@apache.org on 2013/09/06 05:20:09 UTC

svn commit: r1520483 - /jena/site/trunk/content/documentation/query/spatial-query.mdtext

Author: jpz6311whu
Date: Fri Sep  6 03:20:08 2013
New Revision: 1520483

URL: http://svn.apache.org/r1520483
Log:
correct the spelling mistakes for the table of contents

Modified:
    jena/site/trunk/content/documentation/query/spatial-query.mdtext

Modified: jena/site/trunk/content/documentation/query/spatial-query.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/spatial-query.mdtext?rev=1520483&r1=1520482&r2=1520483&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/spatial-query.mdtext (original)
+++ jena/site/trunk/content/documentation/query/spatial-query.mdtext Fri Sep  6 03:20:08 2013
@@ -28,8 +28,8 @@ This query makes a spatial query for the
 - [How to Use it by Code](#how-to-use-it-by-code)
     - [Create Spatial Dataset](#create-spatial-dataset)
     - [Supported Geo Data for Indexing and Querying](#supported-geo-data-for-indexing-and-querying)
-        - [Builtin Geo Prodicates](#builtin-geo-predicates)
-        - [Custom Geo Prodicates](#custom-geo-predicates)
+        - [Builtin Geo Predicates](#builtin-geo-predicates)
+        - [Custom Geo Predicates](#custom-geo-predicates)
     - [Load Geo Data into Spatial Dataset](#load-geo-data-into-spatial-dataset)
 - [Property Function Library](#property-function-library)
 - [Spatial Dataset Assembler](#spatial-dataset-assembler)
@@ -56,7 +56,7 @@ This query makes a spatial query for the
 
 ### Supported Geo Data for Indexing and Querying
 
-#### Builtin Geo Prodicates
+#### Builtin Geo Predicates
 
 There're mainly 2 types of RDF representation of geo data, which are both supported by jena-spatial:
 
@@ -80,7 +80,7 @@ There're mainly 2 types of RDF represent
 
 For 2) WKT, DBPedia uses `geo:geometry`, while Linked Geo Data adopts `ogc:asWKT` and `geo:geometry`.
 
-The builtin predicates that can be automatically processed by jena-spatial include: 1) `geo:lat`, `geo:long`; 2) `geo:geometry`, `ogc:asWKT`.
+*The builtin predicates that can be automatically processed by jena-spatial include: 1) `geo:lat`, `geo:long`; 2) `geo:geometry`, `ogc:asWKT`.*
 
 **Important note** In order to read geo data in 2) WKT literal format, jena-spatial uses [JTS Topology Suite](http://tsusiatsoftware.net/jts/main.html),
 which is under LGPL licence. jena-spatial **does not** make a hard dependency on JTS. In other words,
@@ -96,7 +96,7 @@ which is an optional choice): 
     entDef.setSpatialContextFactory("com.spatial4j.core.context.jts.JtsSpatialContextFactory");
     ...
     
-#### Custom Geo Prodicates
+#### Custom Geo Predicates
 
 However, there may be more predicates for other data sources for both 1) and 2).
 jena-spatial provides an interface for consuming all kinds of custom geo predicates.