Return-Path: X-Original-To: apmail-drill-dev-archive@www.apache.org Delivered-To: apmail-drill-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 15BB818AF2 for ; Thu, 8 Oct 2015 09:39:27 +0000 (UTC) Received: (qmail 84300 invoked by uid 500); 8 Oct 2015 09:39:26 -0000 Delivered-To: apmail-drill-dev-archive@drill.apache.org Received: (qmail 84236 invoked by uid 500); 8 Oct 2015 09:39:26 -0000 Mailing-List: contact dev-help@drill.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@drill.apache.org Delivered-To: mailing list dev@drill.apache.org Received: (qmail 84220 invoked by uid 99); 8 Oct 2015 09:39:26 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Oct 2015 09:39:26 +0000 Date: Thu, 8 Oct 2015 09:39:26 +0000 (UTC) From: "Karol Potocki (JIRA)" To: dev@drill.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (DRILL-3914) Support geospatial queries MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Karol Potocki created DRILL-3914: ------------------------------------ Summary: Support geospatial queries Key: DRILL-3914 URL: https://issues.apache.org/jira/browse/DRILL-3914 Project: Apache Drill Issue Type: Improvement Components: Client - JDBC, Functions - Drill Reporter: Karol Potocki Implement spatial query functionality in Drill to provide location based queries and filtering. It could be similar to PostGIS for Postgres and allow queries like: select * from (select columns[2] as location, columns[4] as lon, columns[3] as lat, ST_DWithin(ST_Point(-121.895, 37.339), ST_Point(columns[4], columns[3]), 0.1) as isWithin from dfs.`default`.`/home/k255/drill/sample-data/CA-cities.csv` ) where isWithin = true; Working proposal is available at http://github.com/k255 (see drill-gis and drill fork). -- This message was sent by Atlassian JIRA (v6.3.4#6332)