wkt parser grammar - allow MULTIPOINT(x0 y0, x1 y1,....,xN yN) as well
as MULTIPOINT((x0 y0), (x1 y1),....,(xN yN)) syntax
This commit is contained in:
parent
a5d51af51c
commit
da45acb047
1 changed files with 4 additions and 0 deletions
|
@ -97,6 +97,10 @@ wkt_grammar<Iterator>::wkt_grammar()
|
|||
>> point_text % lit(',')
|
||||
>> lit(')'))
|
||||
|
|
||||
(lit('(')
|
||||
>> point % lit(',')
|
||||
>> lit(')'))
|
||||
|
|
||||
empty_set
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in a new issue