[postgis-tickets] r15713 - #2352, #3249, ST_RemoveIsoEdge is not documented

Paul Ramsey pramsey at cleverelephant.ca
Wed Sep 13 13:20:00 PDT 2017


Author: pramsey
Date: 2017-09-13 13:20:00 -0700 (Wed, 13 Sep 2017)
New Revision: 15713

Modified:
   trunk/doc/extras_topology.xml
Log:
#2352, #3249, ST_RemoveIsoEdge is not documented



Modified: trunk/doc/extras_topology.xml
===================================================================
--- trunk/doc/extras_topology.xml	2017-09-13 20:03:07 UTC (rev 15712)
+++ trunk/doc/extras_topology.xml	2017-09-13 20:20:00 UTC (rev 15713)
@@ -1784,6 +1784,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