Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 2C3F4FEF8 for ; Tue, 23 Apr 2013 15:27:17 +0000 (UTC) Received: (qmail 72065 invoked by uid 500); 23 Apr 2013 15:27:16 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 71959 invoked by uid 500); 23 Apr 2013 15:27:15 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 71951 invoked by uid 99); 23 Apr 2013 15:27:15 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 23 Apr 2013 15:27:15 +0000 Date: Tue, 23 Apr 2013 15:27:15 +0000 (UTC) From: "David Smiley (JIRA)" To: dev@lucene.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (LUCENE-4922) A SpatialPrefixTree based on the Hilbert Curve and variable grid sizes 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-4922?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13639152#comment-13639152 ] David Smiley commented on LUCENE-4922: -------------------------------------- Thanks for the proposal Hatim! That's a good proposal. I enjoyed reading some of the research papers you referenced. I'm excited to think that at the end of the summer, there's going to be an awesome optimized PrefixTree; and I'm a tad jealous that a lucky student is going to build it instead of me :-) p.s. I independently developed my own outline of tasks to do, which I'll share with the student that is accepted (which is likely you but theoretically could be another student if there is interest from others) > A SpatialPrefixTree based on the Hilbert Curve and variable grid sizes > ---------------------------------------------------------------------- > > Key: LUCENE-4922 > URL: https://issues.apache.org/jira/browse/LUCENE-4922 > Project: Lucene - Core > Issue Type: New Feature > Components: modules/spatial > Reporter: David Smiley > Assignee: David Smiley > Labels: gsoc2013, mentor, newdev > > My wish-list for an ideal SpatialPrefixTree has these properties: > * Hilbert Curve ordering > * Variable grid size per level (ex: 256 at the top, 64 at the bottom, 16 for all in-between) > * Compact binary encoding (so-called "Morton number") > * Works for geodetic (i.e. lat & lon) and non-geodetic > Some bonus wishes for use in geospatial: > * Use an equal-area projection such that each cell has an equal area to all others at the same level. > * When advancing a grid level, if a cell's width is less than half its height. then divide it as 4 vertically stacked instead of 2 by 2. The point is to avoid super-skinny cells which occurs towards the poles and degrades performance. > All of this requires some basic performance benchmarks to measure the effects of these characteristics. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org