Hi Eric,
Thanks for the advice. Any chance you can show me an example that uses a WITHIN (or any of the other operators) with CQLQuery? Cause I'm testing CQLQuery and is not working for me, and all the available examples in geowave github use BBOX, so i think i'm
using it wrongly.
Not even works with CONTAINS in my case. For example I have only this feature/polygon stored (a square)
-24.88987361,-47.88764954
-24.98669082,-47.88764954
-24.98669082,-48.02909851
-24.88987361,-48.02909851
-24.88987361,-47.88764954
Then i want to find the features that contains this point (it's in the center of the polygon)
-24.9204948,-47.9535657
I create the CQLQuery like this
new CQLQuery("CONTAINS(geometry, POINT (-47.9535657 -24.9204948))", featureDataAdapter);
But the query return no results. If I use the EverythingQuery the features is return ok, so it's seems not to be a problem with the adapter used.
Thanks!
De: geowave-dev-bounces@xxxxxxxxxxxxxxxx <geowave-dev-bounces@xxxxxxxxxxxxxxxx> en nombre de Eric Robertson <rwgdrummer@xxxxxxxxx>
Enviado: viernes, 26 de febrero de 2016 09:30 p.m.
Para: geowave-dev
Asunto: Re: [geowave-dev] SpatialQuery CompareOperations