moved over ST_LineFromWKB

git-svn-id: http://svn.osgeo.org/postgis/trunk@3853 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Kevin Neufeld 2009-03-11 05:13:15 +00:00
parent a58b8e52a3
commit 258be29ac0
2 changed files with 3 additions and 20 deletions

View file

@ -24,20 +24,6 @@
<variablelist>
<varlistentry>
<term>ST_LineFromWKB(bytea,[&lt;srid&gt;])</term>
<listitem>
<para>Makes a Geometry from WKB with the given SRID. If SRID is
not give, it defaults to -1.</para>
<para>OGC SPEC 3.2.7.2 - option SRID is from the conformance
suite</para>
<para>throws an error if WKB is not a LINESTRING</para>
</listitem>
</varlistentry>
<varlistentry id="ST_PolyFromWKB">
<term>ST_PolyFromWKB(bytea,[&lt;srid&gt;])</term>

View file

@ -1726,12 +1726,9 @@ aline | null_return
<varname>LINESTRING</varname> geometry. This function plays the role of the Geometry
Factory in SQL.</para>
<para>If an SRID is not specified, it defaults to -1.</para>
<note>
<para><varname>NULL</varname> is returned if the input <varname>bytea</varname>
is not a <varname>LINESTRING</varname>.</para>
</note>
<para>If an SRID is not specified, it defaults to -1. <varname>NULL</varname> is
returned if the input <varname>bytea</varname>
does not represent a <varname>LINESTRING</varname>.</para>
<note>
<para>OGC SPEC 3.2.6.2 - option SRID is from the conformance