Index: Main.cpp
==================================================================
--- Main.cpp
+++ Main.cpp
@@ -8509,10 +8509,16 @@
("
a POINT Geometry will be returned representing the GPS long/lat contained within EXIF-GPS metadata for the BLOB image ");
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 |
");
@@ -8549,10 +8555,20 @@
wxT
("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
@@ -9810,11 +9826,12 @@
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
@@ -603,10 +603,12 @@
if (str.CmpNoCase(wxT("BlobToFile")) == 0)
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;