[postgis-tickets] r15715 - #3249, #2352, document ST_RemoveIsoEdge

Paul Ramsey pramsey at cleverelephant.ca
Wed Sep 13 13:21:39 PDT 2017


Author: pramsey
Date: 2017-09-13 13:21:39 -0700 (Wed, 13 Sep 2017)
New Revision: 15715

Modified:
   branches/2.2/doc/extras_topology.xml
Log:
#3249, #2352, document ST_RemoveIsoEdge



Modified: branches/2.2/doc/extras_topology.xml
===================================================================
--- branches/2.2/doc/extras_topology.xml	2017-09-13 20:21:20 UTC (rev 15714)
+++ branches/2.2/doc/extras_topology.xml	2017-09-13 20:21:39 UTC (rev 15715)
@@ -1715,6 +1715,55 @@
 		</refentry>
 	</sect1>
 
+		<refentry id="ST_RemoveIsoEdge">
+			<refnamediv>
+				<refname>ST_RemoveIsoEdge</refname>
+
+				<refpurpose>Removes an isolated edge and returns description of action. If the edge is not isolated, then an exception is thrown.</refpurpose>
+			</refnamediv>
+
+			<refsynopsisdiv>
+				<funcsynopsis>
+					<funcprototype>
+					<funcdef>text <function>ST_RemoveIsoEdge</function></funcdef>
+					<paramdef><type>varchar </type> <parameter>atopology</parameter></paramdef>
+					<paramdef><type>integer </type> <parameter>anedge</parameter></paramdef>
+					</funcprototype>
+				</funcsynopsis>
+			</refsynopsisdiv>
+
+			<refsection>
+                <title>Description</title>
+
+                <para>Removes an isolated edge and returns description of action. If the edge is not isolated, then an exception is thrown.</para>
+
+
+                <!-- use this format if new function -->
+                <para>Availability: 1.? </para>
+	<para>&sqlmm_compliant; SQL-MM: Topo-Geo and Topo-Net 3: Routine Details:  X+1.3.3</para>
+			</refsection>
+
+
+			<refsection>
+				<title>Examples</title>
+				<programlisting>
+-- Remove an isolated node with no face  --
+SELECT topology.ST_RemoveIsoNode('ma_topo',  7 ) As result;
+         result
+-------------------------
+ Isolated node 7 removed
+</programlisting>
+			</refsection>
+
+			<!-- Optionally add a "See Also" section -->
+			<refsection>
+				<title>See Also</title>
+				<para><xref linkend="ST_AddIsoNode"/></para>
+			</refsection>
+		</refentry>
+	</sect1>
+
+
 	<sect1 id="Topology_Accessors">
 	  <title>Topology Accessors</title>
         <refentry id="GetEdgeByPoint">



More information about the postgis-tickets mailing list