Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From e9691fbabfd1d691 To 5df97398cf4096aa
2013-03-16
| ||
13:22 | supporting XB_SetFileID() and friends check-in: 4317c2b1b0 user: sandro tags: trunk | |
2013-03-14
| ||
10:52 | supporting ST_Point() and MakeLine(MultiPoint, direction) check-in: e9691fbabf user: sandro tags: trunk | |
2013-03-13
| ||
00:44 | supporting ST_Project() and ST_Area() - geodesic check-in: 5df97398cf user: sandro tags: trunk | |
2013-03-11
| ||
18:12 | supporting SetStyledGroupInfos() check-in: bcdfe94ff9 user: sandro tags: trunk | |
Changes to Main.cpp.
8508 8508 wxT 8509 8509 ("<td bgcolor=\"#f0fff0\">a POINT Geometry will be returned representing the GPS long/lat contained within EXIF-GPS <i>metadata</i> for the BLOB image<br>"); 8510 8510 html += 8511 8511 wxT 8512 8512 ("NULL will be returned if for any reason it's not possible to build such a POINT</td></tr>"); 8513 8513 html += 8514 8514 wxT 8515 - ("<tr><td bgcolor=\"#fffff0\">ST_Point( x Double precision , y Double precision ) : Geometry</td>"); 8516 - html += 8517 - wxT 8518 - ("<td bgcolor=\"#f0fff0\">simply an alias-name for MakePoint() (SRID is never supported).</td></tr>"); 8519 - html += 8520 - wxT 8521 8515 ("<tr><td bgcolor=\"#fffff0\">MakePoint( x Double precision , y Double precision [ , SRID Integer] ) : Geometry</td>"); 8522 8516 html += 8523 8517 wxT 8524 8518 ("<td bgcolor=\"#f0fff0\">a Geometry will be returned representing the POINT defined by [x y] coordinates</td></tr>"); 8525 8519 html += 8526 8520 wxT 8527 8521 ("<tr><td bgcolor=\"#fffff0\">MakePointZ( x Double precision , y Double precision , z Double precision [ , SRID Integer] ) : Geometry</td>"); ................................................................................ 8554 8548 html += 8555 8549 wxT 8556 8550 ("<td bgcolor=\"#f0fff0\">a Linestring Geometry will be returned connecting all the input Points (accordingly to input sequence)<br>"); 8557 8551 html += wxT("<b><u>aggregate function</u></b><br>"); 8558 8552 html += wxT("NULL will be returned if any error is encountered</td></tr>"); 8559 8553 html += 8560 8554 wxT 8561 - ("<tr><td bgcolor=\"#fffff0\">MakeLine( geom MultiPointGeometry , direction Boolean ) : LinestringGeometry</td>"); 8562 - html += 8563 - wxT 8564 - ("<td bgcolor=\"#f0fff0\">a Linestring Geometry will be returned connecting all the input Points (accordingly to input sequence); \"direction=FALSE\" implies reverse order.<br>"); 8565 - html += 8566 - wxT 8567 - ("<u>Please note</u>: similar to the previuous one, but this one is an ordinary (not aggregate) function; a MultiPoint input is always expected.<hr>"); 8568 - html += wxT("NULL will be returned if any error is encountered</td></tr>"); 8569 - html += 8570 - wxT 8571 8555 ("<tr><td bgcolor=\"#fffff0\">Collect( geom1 Geometry , geom2 Geometry ) : Geometry<hr>"); 8572 8556 html += wxT("ST_Collect( geom1 Geometry , geom2 Geometry ) : Geometry</td>"); 8573 8557 html += 8574 8558 wxT 8575 8559 ("<td bgcolor=\"#f0fff0\">a generic Geometry (possibly a GEOMETRYCOLLECTION) will be returned merging geom1 and geom2<br>"); 8576 8560 html += wxT("NULL will be returned if any error is encountered</td></tr>"); 8577 8561 html += ................................................................................ 9824 9808 ("<tr><td align=\"center\" bgcolor=\"#e0ffe0\" colspan=\"2\"><a name=\"c36\">functions on type Surface [Polygon or Ring]</a>"); 9825 9809 html += wxT("<br><a href=\"#index\">back to index</a></td></tr>"); 9826 9810 html += wxT("<tr><td bgcolor=\"#fffff0\">Centroid( s Surface ) : Point<hr>"); 9827 9811 html += 9828 9812 wxT 9829 9813 ("ST_Centroid( s Surface ) : Point</td><td bgcolor=\"#f0fff0\">return the centroid of s, which may lie outside s</td></tr>"); 9830 9814 html += 9831 - wxT 9832 - ("<tr><td bgcolor=\"#fffff0\">Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision<hr>"); 9815 + wxT("<tr><td bgcolor=\"#fffff0\">Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision<hr>"); 9833 9816 html += 9834 9817 wxT 9835 9818 ("ST_Area( s Surface [ , use_ellipsoid Boolean ] ) : Double precision</td><td bgcolor=\"#f0fff0\">return the area of s</td></tr>"); 9836 9819 html += 9837 9820 wxT 9838 9821 ("<tr><td align=\"center\" bgcolor=\"#e0ffe0\" colspan=\"2\"><a name=\"c37\">functions on type Polygon</a>"); 9839 9822 html += wxT("<br><a href=\"#index\">back to index</a></td></tr>");
Changes to QueryView.cpp.
602 602 return true; 603 603 if (str.CmpNoCase(wxT("BlobToFile")) == 0) 604 604 return true; 605 605 606 606 607 607 if (str.CmpNoCase(wxT("MakePoint")) == 0) 608 608 return true; 609 - if (str.CmpNoCase(wxT("ST_Point")) == 0) 610 - return true; 611 609 if (str.CmpNoCase(wxT("MakeLine")) == 0) 612 610 return true; 613 611 if (str.CmpNoCase(wxT("BuildMbr")) == 0) 614 612 return true; 615 613 if (str.CmpNoCase(wxT("BuildCircleMbr")) == 0) 616 614 return true; 617 615 if (str.CmpNoCase(wxT("Extent")) == 0)