Closed
Description
This does not parse
MULTIPOINT( EMPTY, (10 10), (20 20))
this does
MULTIPOINT(EMPTY, (10 10), (20 20))
Here's a test case
// EMPTY token with some white space
template<>
template<>
void object::test<24>
()
{
GeomPtr geom(wktreader.read("MULTIPOINT( EMPTY, (10 10), (20 20))"));
auto ngeoms = geom->getNumGeometries();
ensure(ngeoms == 3);
}