Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 31857 invoked from network); 14 Apr 2010 18:11:13 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Apr 2010 18:11:13 -0000 Received: (qmail 6467 invoked by uid 500); 14 Apr 2010 18:11:12 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 6385 invoked by uid 500); 14 Apr 2010 18:11:12 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 6293 invoked by uid 99); 14 Apr 2010 18:11:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Apr 2010 18:11:12 +0000 X-ASF-Spam-Status: No, hits=-1288.0 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Apr 2010 18:11:11 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o3EIApgk008583 for ; Wed, 14 Apr 2010 14:10:51 -0400 (EDT) Message-ID: <7941181.120751271268651478.JavaMail.jira@thor> Date: Wed, 14 Apr 2010 14:10:51 -0400 (EDT) From: "Nicolas Helleringer (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-2359) CartesianPolyFilterBuilder doesn't handle edge case around the 180 meridian In-Reply-To: <1317690654.614301270066887693.JavaMail.jira@brutus.apache.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LUCENE-2359?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12857001#action_12857001 ] Nicolas Helleringer commented on LUCENE-2359: --------------------------------------------- hi Yonik, I do not aggre : as the 4 tiles requested go cover all the search area there is no gain in beeing less accurate. > CartesianPolyFilterBuilder doesn't handle edge case around the 180 meridian > --------------------------------------------------------------------------- > > Key: LUCENE-2359 > URL: https://issues.apache.org/jira/browse/LUCENE-2359 > Project: Lucene - Java > Issue Type: Bug > Components: contrib/spatial > Affects Versions: 2.9, 2.9.1, 2.9.2, 3.0, 3.0.1 > Reporter: Grant Ingersoll > Assignee: Grant Ingersoll > Priority: Minor > Attachments: LUCENE-2359.patch, LUCENE-2359.patch, LUCENE-2359.patch, TEST-2359.patch > > > Test case: > Points all around the globe, plus two points at 0, 179.9 and 0,-179.9 (on each side of the meridian). Then, do a Cartesian Tier filter on a point right near those two. It will return all the points when it should just return those two. > The flawed logic is in the else clause below: > {code} > if (longX2 != 0.0) { > //We are around the prime meridian > if (longX == 0.0) { > longX = longX2; > longY = 0.0; > shape = getShapeLoop(shape,ctp,latX,longX,latY,longY); > } else {//we are around the 180th longitude > longX = longX2; > longY = -180.0; > shape = getShapeLoop(shape,ctp,latY,longY,latX,longX); > } > {code} > Basically, the Y and X values are transposed. This currently says go from longY (-180) all the way around to longX which is the lower left longitude of the box formed. Instead, it should go from the lower left long to -180. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: https://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org