Index: Main.cpp
==================================================================
--- Main.cpp
+++ Main.cpp
@@ -8510,16 +8510,10 @@
html +=
wxT
("NULL will be returned if for any reason it's not possible to build such a POINT");
html +=
wxT
- ("
ST_Point( x Double precision , y Double precision ) : Geometry | ");
- html +=
- wxT
- ("simply an alias-name for MakePoint() (SRID is never supported). |
");
- html +=
- wxT
("MakePoint( x Double precision , y Double precision [ , SRID Integer] ) : Geometry | ");
html +=
wxT
("a Geometry will be returned representing the POINT defined by [x y] coordinates |
");
html +=
@@ -8556,20 +8550,10 @@
("a Linestring Geometry will be returned connecting all the input Points (accordingly to input sequence) ");
html += wxT("aggregate function ");
html += wxT("NULL will be returned if any error is encountered | ");
html +=
wxT
- ("MakeLine( geom MultiPointGeometry , direction Boolean ) : LinestringGeometry | ");
- html +=
- wxT
- ("a Linestring Geometry will be returned connecting all the input Points (accordingly to input sequence); \"direction=FALSE\" implies reverse order. ");
- html +=
- wxT
- ("Please note: similar to the previuous one, but this one is an ordinary (not aggregate) function; a MultiPoint input is always expected. ");
- html += wxT("NULL will be returned if any error is encountered |
");
- html +=
- wxT
("Collect( geom1 Geometry , geom2 Geometry ) : Geometry ");
html += wxT("ST_Collect( geom1 Geometry , geom2 Geometry ) : Geometry | ");
html +=
wxT
("a generic Geometry (possibly a GEOMETRYCOLLECTION) will be returned merging geom1 and geom2 ");
@@ -9826,12 +9810,11 @@
html += wxT(" |
Centroid( s Surface ) : Point ");
html +=
wxT
("ST_Centroid( s Surface ) : Point | return the centroid of s, which may lie outside s |
");
html +=
- wxT
- ("Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision ");
+ wxT(" |
Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision ");
html +=
wxT
("ST_Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision | return the area of s |
");
html +=
wxT
Index: QueryView.cpp
==================================================================
--- QueryView.cpp
+++ QueryView.cpp
@@ -604,12 +604,10 @@
return true;
if (str.CmpNoCase(wxT("MakePoint")) == 0)
return true;
- if (str.CmpNoCase(wxT("ST_Point")) == 0)
- return true;
if (str.CmpNoCase(wxT("MakeLine")) == 0)
return true;
if (str.CmpNoCase(wxT("BuildMbr")) == 0)
return true;
if (str.CmpNoCase(wxT("BuildCircleMbr")) == 0)