Boost C++ Libraries: Ticket #6585: Multipoint syntax variant https://svn.boost.org/trac10/ticket/6585 <p> Multipoint might be written in to variants: "MULTIPOINT ((10 40), (40 30), (20 20), (30 10))" or "MULTIPOINT (10 40, 40 30, 20 20, 30 10)". </p> <p> read_wkt() does parse first variant, but doesn't parse second. I've added multipoint_parser to switch between variants depending on the format of the first point in WKT. </p> <p> I've also added check_end() call to multi_parser to handle incorrect definitions like "MULTILINESTRING ((10 10, 20 20, 10 40), (40 40, 30 30, 40 20, 30 10)), (0 0, 1 1)" </p> <p> Patch and test application are attached to ticket. </p> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/6585 Trac 1.4.3 Aleksey Tulinov <aleksey.tulinov@…> Mon, 20 Feb 2012 23:50:33 GMT attachment set https://svn.boost.org/trac10/ticket/6585 https://svn.boost.org/trac10/ticket/6585 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">test1.cpp</span> </li> </ul> Ticket Aleksey Tulinov <aleksey.tulinov@…> Mon, 20 Feb 2012 23:51:00 GMT attachment set https://svn.boost.org/trac10/ticket/6585 https://svn.boost.org/trac10/ticket/6585 <ul> <li><strong>attachment</strong> → <span class="trac-field-new">wkt.patch</span> </li> </ul> <p> Patch for WKT parsing </p> Ticket Barend Gehrels Fri, 24 Feb 2012 10:28:13 GMT status, type, milestone changed; resolution set https://svn.boost.org/trac10/ticket/6585#comment:1 https://svn.boost.org/trac10/ticket/6585#comment:1 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>type</strong> <span class="trac-field-old">Bugs</span> → <span class="trac-field-new">Patches</span> </li> <li><strong>resolution</strong> → <span class="trac-field-new">fixed</span> </li> <li><strong>milestone</strong> <span class="trac-field-old">To Be Determined</span> → <span class="trac-field-new">Boost 1.50.0</span> </li> </ul> <p> Thanks for this patch. </p> <p> The patch is applied. The tests are incorporated in the unit tests. </p> Ticket