Skip to content
dirtyvagabond edited this page Sep 9, 2012 · 2 revisions

Introduction

Geo filters enable read requests to return only data bounded by specified geographic coordinates for tables that support it.

Examples

Find all rows within a specified proximity to a geo point:

(fetch :global {:geo {:$circle {:$center [34.06021,-118.41828] :$meters 5000}}})

Find the closest places to a specified point:

(fetch :global {:geo {:$point [34.06021,-118.41828]}})
Clone this wiki locally