Re: solr4 MULTIPOLYGON search syntax

2012-11-20 Thread jend
Thanks to both of you. I got it working as follows after your helpful posts. I get this polygon search working. fq=geo:"Intersects(POLYGON((149.4023 -34.6072, 149.4023 -34.8690, 149.9022 -34.8690, 149.9022 -34.6072, 149.4023 -34.6072)))" AND I can get this search working (as in results returned)

Re: solr4 MULTIPOLYGON search syntax

2012-11-20 Thread Smiley, David W.
Hi jend, You need an extra layer of parenthesis for MultiPolygon. I see that you opened up with MULTIPOLYGON((… instead of MULTIPOLYGON(((… Of course ensure you balance your parenthesis. For examples of WKT, see Wikipedia: http://en.wikipedia.org/wiki/Well-known_text ~ David On Nov 19, 2

Re: solr4 MULTIPOLYGON search syntax

2012-11-20 Thread kfdroid
I think you may be missing a set of parenthesis, instead of MULTIPOLYGON((point,point,point)),((point,point,point)) you need MULTIPOLYGON(((point,point,point)),((point,point,point))) -- View this message in context: http://lucene.472066.n3.nabble.com/solr4-MULTIPOLYGON-search-syntax-tp4021199p