By the way:<br><br>geos/algorithm/CGAlgorithms.h<br>geos/algorithm/HCoordinate.h<br><br>(and a bunch of other algorithms) seem to be also excluded from the offical release...<br>I am gonna stop bothering you with this, because I now installed Geos from SVN!<br>
<br>                            cheers,<br>                                       Jo<br><br><div class="gmail_quote">2009/7/13  <span dir="ltr">&lt;<a href="mailto:geos-devel-request@lists.osgeo.org">geos-devel-request@lists.osgeo.org</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">Send geos-devel mailing list submissions to<br>
        <a href="mailto:geos-devel@lists.osgeo.org">geos-devel@lists.osgeo.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.osgeo.org/mailman/listinfo/geos-devel" target="_blank">http://lists.osgeo.org/mailman/listinfo/geos-devel</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:geos-devel-request@lists.osgeo.org">geos-devel-request@lists.osgeo.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:geos-devel-owner@lists.osgeo.org">geos-devel-owner@lists.osgeo.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of geos-devel digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: geos::geom::triangle (Mateusz Loskot)<br>
   2. Adding STRtree and PreparedGeometry support to SWIG<br>
      (Schuyler Erle)<br>
   3. Re: [GEOS] #276: &quot;make check&quot; failed at geos_unit on      mingw (GEOS)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sun, 12 Jul 2009 22:56:24 +0100<br>
From: Mateusz Loskot &lt;<a href="mailto:mateusz@loskot.net">mateusz@loskot.net</a>&gt;<br>
Subject: Re: [geos-devel] geos::geom::triangle<br>
To: GEOS Development List &lt;<a href="mailto:geos-devel@lists.osgeo.org">geos-devel@lists.osgeo.org</a>&gt;<br>
Message-ID: &lt;<a href="mailto:4A5A5C08.30603@loskot.net">4A5A5C08.30603@loskot.net</a>&gt;<br>
Content-Type: text/plain; charset=UTF-8<br>
<br>
Jo wrote:<br>
&gt; Hi,<br>
&gt; Anybody knows what happened to the geos ::geometry::Triangle class?<br>
&gt; Its present in the headers of my source code, but not in the installed<br>
&gt; headers (actually, I think is commented in the geometry header)<br>
&gt;<br>
&gt; Im usin geos 3.0.3<br>
<br>
This header is intentionally excluded from the installation<br>
see lines 51-52<br>
<br>
<a href="http://trac.osgeo.org/geos/browser/tags/3.0.3/source/headers/geos/geom/Makefile.am" target="_blank">http://trac.osgeo.org/geos/browser/tags/3.0.3/source/headers/geos/geom/Makefile.am</a><br>
<br>
Though, I don&#39;t know why, probably incomplete implementation.<br>
<br>
Best regards<br>
--<br>
Mateusz Loskot, <a href="http://mateusz.loskot.net" target="_blank">http://mateusz.loskot.net</a><br>
Charter Member of OSGeo, <a href="http://osgeo.org" target="_blank">http://osgeo.org</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Mon, 13 Jul 2009 01:55:51 -0400<br>
From: Schuyler Erle &lt;<a href="mailto:schuyler@nocat.net">schuyler@nocat.net</a>&gt;<br>
Subject: [geos-devel] Adding STRtree and PreparedGeometry support to<br>
        SWIG<br>
To: <a href="mailto:geos-devel@lists.osgeo.org">geos-devel@lists.osgeo.org</a><br>
Message-ID: &lt;1247464551.6323.53.camel@goldman&gt;<br>
Content-Type: text/plain<br>
<br>
Howdy, folks. I&#39;ve created tickets in GEOS Trac for three patches I<br>
created to implement STRtree and PreparedGeometry in the SWIG bindings,<br>
with the gracious financial support of FortiusOne&#39;s GeoCommons.<br>
<br>
The first patch adds an iterate() method to AbstractSTRTree to permit<br>
iterating (via the visitor pattern) over all items that have been<br>
inserted into the tree, regardless of bounds. Currently, there is no<br>
public method for accessing inserted items in an STRtree without having<br>
to first build the tree (thus preventing insertion of further items). I<br>
implemented this method in order to be able to store Ruby objects in the<br>
the STRtree, thanks to Ruby&#39;s mark-and-sweep garbage collector.<br>
<br>
  <a href="http://trac.osgeo.org/geos/ticket/277" target="_blank">http://trac.osgeo.org/geos/ticket/277</a><br>
<br>
The second patch adds the STRtree class to the C API. The ItemVisitor<br>
class is subclassed to allow calling GEOSSTRtree_query() from C with a<br>
callback function pointer and a (void *) accumulator.<br>
<br>
  <a href="http://trac.osgeo.org/geos/ticket/278" target="_blank">http://trac.osgeo.org/geos/ticket/278</a><br>
<br>
The third patch adds STRtree and PreparedGeometry support to the SWIG<br>
bindings. Also included are some niceties for the Ruby bindings, to<br>
handle the aforementioned GC marking, and to permit Ruby code blocks to<br>
be wrapped as ItemVisitor callbacks.<br>
<br>
  <a href="http://trac.osgeo.org/geos/ticket/279" target="_blank">http://trac.osgeo.org/geos/ticket/279</a><br>
<br>
It took me quite a bit of time and effort to get my head around the way<br>
GEOS is designed in order to get these patches implemented, so I&#39;m keen<br>
to do what&#39;s needed to get them into SVN. I welcome any feedback anyone<br>
has to offer. Thanks very much!<br>
<br>
SDE<br>
<br>
<br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Mon, 13 Jul 2009 15:25:50 -0000<br>
From: &quot;GEOS&quot; &lt;<a href="mailto:geos-trac@osgeo.org">geos-trac@osgeo.org</a>&gt;<br>
Subject: [geos-devel] Re: [GEOS] #276: &quot;make check&quot; failed at<br>
        geos_unit on    mingw<br>
To: undisclosed-recipients:;<br>
Message-ID: &lt;<a href="mailto:054.4fec17ea41a922af59ee10392222ceb2@osgeo.org">054.4fec17ea41a922af59ee10392222ceb2@osgeo.org</a>&gt;<br>
Content-Type: text/plain; charset=&quot;utf-8&quot;<br>
<br>
#276: &quot;make check&quot; failed at geos_unit on mingw<br>
------------------------+---------------------------------------------------<br>
 Reporter:  sanak       |        Owner:  <a href="mailto:geos-devel@lists.osgeo.org">geos-devel@lists.osgeo.org</a><br>
     Type:  defect      |       Status:  new<br>
 Priority:  major       |    Milestone:  3.2.0<br>
Component:  Default     |      Version:  svn-trunk<br>
 Severity:  Unassigned  |   Resolution:<br>
 Keywords:  mingw       |<br>
------------------------+---------------------------------------------------<br>
Comment (by pramsey):<br>
<br>
 I&#39;m not sure how to address this, the flags are inherited from the lower<br>
 level Makefile. You could compile the whole suite w/o optimization or just<br>
 not compile w/ &#39;check&#39;. Do you have a patch?<br>
<br>
--<br>
Ticket URL: &lt;<a href="http://trac.osgeo.org/geos/ticket/276#comment:1" target="_blank">http://trac.osgeo.org/geos/ticket/276#comment:1</a>&gt;<br>
GEOS &lt;<a href="http://geos.refractions.net/" target="_blank">http://geos.refractions.net/</a>&gt;<br>
GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS).<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
geos-devel mailing list<br>
<a href="mailto:geos-devel@lists.osgeo.org">geos-devel@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/geos-devel" target="_blank">http://lists.osgeo.org/mailman/listinfo/geos-devel</a><br>
<br>
End of geos-devel Digest, Vol 81, Issue 6<br>
*****************************************<br>
</blockquote></div><br><br clear="all"><br>-- <br>&quot;#define QUESTION ((bb) || !(bb))&quot;  (Shakespeare)<br><br>