<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>OpenText Analytics Database 26.2.x – Spatial object representations</title>
    <link>/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/</link>
    <description>Recent content in Spatial object representations on OpenText Analytics Database 26.2.x</description>
    <generator>Hugo -- gohugo.io</generator>
    
	  <atom:link href="/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/index.xml" rel="self" type="application/rss+xml" />
    
    
      
        
      
    
    
    <item>
      <title>Data-Analysis: Well-known text (WKT)</title>
      <link>/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/well-known-text-wkt/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/well-known-text-wkt/</guid>
      <description>
        
        
        &lt;p&gt;Well-Known Text (WKT) is an ASCII representation of a spatial object.&lt;/p&gt;
&lt;p&gt;WKTs are not case sensitive; the database recognizes any combination of lowercase and uppercase letters.&lt;/p&gt;
&lt;p&gt;Some examples of valid WKTs are:

&lt;table class=&#34;table table-bordered&#34; &gt;



&lt;tr&gt; 

&lt;th &gt;
WKT Example&lt;/th&gt; 

&lt;th &gt;
Description&lt;/th&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


POINT(1 2)&lt;/td&gt; 

&lt;td &gt;


The point (1,2)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


MULTIPOINT(0 0,1 1)&lt;/td&gt; 

&lt;td &gt;


A set made up of the points (0,0) and (1,1)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


LINESTRING(1.5 2.45,3.21 4)&lt;/td&gt; 

&lt;td &gt;


The line from the point (1.5,2.45) to the point (3.21,4)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


MULTILINESTRING((0 0,–1 –2,–3 –4),(2 3,3 4,6 7))&lt;/td&gt; 

&lt;td &gt;


Two linestrings, one that passes through (0,0), (–1,–2), and (–3,–4), and one that passes through (2,3), (3,4), and (6,7).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


POLYGON((1 2,1 4,3 4,3 2,1 2))&lt;/td&gt; 

&lt;td &gt;


The rectangle whose four corners are indicated by (1,2), (1,4), (3,4), and (3,2). A polygon must be closed, so the first and last points in the WKT must match.&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


POLYGON((0.5 0.5,5 0,5 5,0 5,0.5 0.5), (1.5 1,4 3,4 1,1.5 1))&lt;/td&gt; 

&lt;td &gt;


A polygon (0.5 0.5,5 0,5 5,0 5,0.5 0.5) with a hole in it (1.5 1,4 3,4 1,1.5 1).&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


MULTIPOLYGON(((0 1,3 0,4 3,0 4,0 1)), ((3 4,6 3,5 5,3 4)), ((0 0,–1 –2,–3 –2,–2 –1,0 0)))&lt;/td&gt; 

&lt;td &gt;


A set of three polygons&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


GEOMETRYCOLLECTION(POINT(5 8), LINESTRING(–1 3,1 4))&lt;/td&gt; 

&lt;td &gt;


A set containing the point (5,8) and the line from (–1,3) to (1,4)&lt;/td&gt;&lt;/tr&gt;

&lt;tr&gt; 

&lt;td &gt;


















&lt;p&gt;POINT EMPTY&lt;/p&gt;
&lt;p&gt;MULTIPOINT EMPTY&lt;/p&gt;
&lt;p&gt;LINESTRING EMPTY&lt;/p&gt;
&lt;p&gt;MULTILINESTRING EMPTY&lt;/p&gt;
&lt;p&gt;MULTILINESTRING(EMPTY)&lt;/p&gt;
&lt;p&gt;POLYGON EMPTY&lt;/p&gt;
&lt;p&gt;POLYGON(EMPTY)&lt;/p&gt;
&lt;p&gt;MULTIPOLYGON EMPTY&lt;/p&gt;
&lt;p&gt;MULTIPOLYGON(EMPTY)&lt;/p&gt;
&lt;/td&gt; 

&lt;td &gt;


Empty spatial objects; empty objects have no points.&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/p&gt;
&lt;p&gt;Invalid WKTs are:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;POINT(1 NAN), POINT(1 INF)—Coordinates must be numbers.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;POLYGON((1 2, 1 4, 3 4, 3 2))—A polygon must be closed.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;POLYGON((1 4, 2 4))—A linestring is not a valid polygon.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;

      </description>
    </item>
    
    <item>
      <title>Data-Analysis: Well-known binary (WKB)</title>
      <link>/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/well-known-binary-wkb/</link>
      <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
      
      <guid>/en/data-analysis/geospatial-analytics/ogc-spatial-definitions/spatial-object-representations/well-known-binary-wkb/</guid>
      <description>
        
        
        &lt;p&gt;Well-Known Binary (WKB) is a binary representation of a spatial object. This format is primarily used to port spatial data between applications.&lt;/p&gt;

      </description>
    </item>
    
  </channel>
</rss>
