2014-05-23 03:51:30 +08:00
|
|
|
from __future__ import unicode_literals
|
2015-01-28 20:35:27 +08:00
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
import re
|
|
|
|
|
2015-01-02 23:14:23 +08:00
|
|
|
from django.core.exceptions import FieldDoesNotExist
|
2014-05-24 22:18:45 +08:00
|
|
|
from django.db.models.constants import LOOKUP_SEP
|
2015-03-17 08:38:55 +08:00
|
|
|
from django.db.models.expressions import Col, Expression
|
2016-12-01 00:22:56 +08:00
|
|
|
from django.db.models.lookups import Lookup, Transform
|
2016-10-28 23:20:23 +08:00
|
|
|
from django.db.models.sql.query import Query
|
2014-05-23 03:51:30 +08:00
|
|
|
from django.utils import six
|
|
|
|
|
|
|
|
gis_lookups = {}
|
2014-01-18 17:09:43 +08:00
|
|
|
|
|
|
|
|
2016-04-22 00:03:14 +08:00
|
|
|
class RasterBandTransform(Transform):
|
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
return compiler.compile(self.lhs)
|
|
|
|
|
|
|
|
|
2014-01-18 17:09:43 +08:00
|
|
|
class GISLookup(Lookup):
|
2014-05-23 03:51:30 +08:00
|
|
|
sql_template = None
|
|
|
|
transform_func = None
|
|
|
|
distance = False
|
2016-04-22 00:03:14 +08:00
|
|
|
band_rhs = None
|
|
|
|
band_lhs = None
|
2014-05-23 03:51:30 +08:00
|
|
|
|
2015-10-07 04:05:53 +08:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(GISLookup, self).__init__(*args, **kwargs)
|
|
|
|
self.template_params = {}
|
|
|
|
|
2014-05-24 22:18:45 +08:00
|
|
|
@classmethod
|
|
|
|
def _check_geo_field(cls, opts, lookup):
|
|
|
|
"""
|
|
|
|
Utility for checking the given lookup with the given model options.
|
|
|
|
The lookup is a string either specifying the geographic field, e.g.
|
|
|
|
'point, 'the_geom', or a related lookup on a geographic field like
|
|
|
|
'address__point'.
|
|
|
|
|
2016-04-22 00:03:14 +08:00
|
|
|
If a BaseSpatialField exists according to the given lookup on the model
|
|
|
|
options, it will be returned. Otherwise return None.
|
2014-05-24 22:18:45 +08:00
|
|
|
"""
|
2016-04-22 00:03:14 +08:00
|
|
|
from django.contrib.gis.db.models.fields import BaseSpatialField
|
2014-05-24 22:18:45 +08:00
|
|
|
# This takes into account the situation where the lookup is a
|
|
|
|
# lookup to a related geographic field, e.g., 'address__point'.
|
|
|
|
field_list = lookup.split(LOOKUP_SEP)
|
|
|
|
|
|
|
|
# Reversing so list operates like a queue of related lookups,
|
|
|
|
# and popping the top lookup.
|
|
|
|
field_list.reverse()
|
|
|
|
fld_name = field_list.pop()
|
|
|
|
|
|
|
|
try:
|
|
|
|
geo_fld = opts.get_field(fld_name)
|
|
|
|
# If the field list is still around, then it means that the
|
|
|
|
# lookup was for a geometry field across a relationship --
|
|
|
|
# thus we keep on getting the related model options and the
|
|
|
|
# model field associated with the next field in the list
|
|
|
|
# until there's no more left.
|
|
|
|
while len(field_list):
|
2015-02-26 22:19:17 +08:00
|
|
|
opts = geo_fld.remote_field.model._meta
|
2014-05-24 22:18:45 +08:00
|
|
|
geo_fld = opts.get_field(field_list.pop())
|
|
|
|
except (FieldDoesNotExist, AttributeError):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Finally, make sure we got a Geographic field and return.
|
2016-04-22 00:03:14 +08:00
|
|
|
if isinstance(geo_fld, BaseSpatialField):
|
2014-05-24 22:18:45 +08:00
|
|
|
return geo_fld
|
|
|
|
else:
|
|
|
|
return False
|
|
|
|
|
2016-04-22 00:03:14 +08:00
|
|
|
def process_band_indices(self, only_lhs=False):
|
|
|
|
"""
|
|
|
|
Extract the lhs band index from the band transform class and the rhs
|
|
|
|
band index from the input tuple.
|
|
|
|
"""
|
|
|
|
# PostGIS band indices are 1-based, so the band index needs to be
|
|
|
|
# increased to be consistent with the GDALRaster band indices.
|
|
|
|
if only_lhs:
|
|
|
|
self.band_rhs = 1
|
|
|
|
self.band_lhs = self.lhs.band_index + 1
|
|
|
|
return
|
|
|
|
|
|
|
|
if isinstance(self.lhs, RasterBandTransform):
|
|
|
|
self.band_lhs = self.lhs.band_index + 1
|
|
|
|
else:
|
|
|
|
self.band_lhs = 1
|
|
|
|
|
|
|
|
self.band_rhs = self.rhs[1]
|
|
|
|
if len(self.rhs) == 1:
|
|
|
|
self.rhs = self.rhs[0]
|
|
|
|
else:
|
|
|
|
self.rhs = (self.rhs[0], ) + self.rhs[2:]
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
def get_db_prep_lookup(self, value, connection):
|
|
|
|
# get_db_prep_lookup is called by process_rhs from super class
|
|
|
|
if isinstance(value, (tuple, list)):
|
|
|
|
# First param is assumed to be the geometric object
|
|
|
|
params = [connection.ops.Adapter(value[0])] + list(value)[1:]
|
|
|
|
else:
|
|
|
|
params = [connection.ops.Adapter(value)]
|
|
|
|
return ('%s', params)
|
|
|
|
|
2014-11-16 09:56:42 +08:00
|
|
|
def process_rhs(self, compiler, connection):
|
2016-10-28 23:20:23 +08:00
|
|
|
if isinstance(self.rhs, Query):
|
|
|
|
# If rhs is some Query, don't touch it.
|
2016-04-22 00:03:14 +08:00
|
|
|
return super(GISLookup, self).process_rhs(compiler, connection)
|
2014-05-23 03:51:30 +08:00
|
|
|
|
|
|
|
geom = self.rhs
|
2013-12-25 21:13:18 +08:00
|
|
|
if isinstance(self.rhs, Col):
|
2014-01-18 17:09:43 +08:00
|
|
|
# Make sure the F Expression destination field exists, and
|
|
|
|
# set an `srid` attribute with the same as that of the
|
|
|
|
# destination.
|
2013-12-25 21:13:18 +08:00
|
|
|
geo_fld = self.rhs.output_field
|
|
|
|
if not hasattr(geo_fld, 'srid'):
|
2014-01-18 17:09:43 +08:00
|
|
|
raise ValueError('No geographic field found in expression.')
|
|
|
|
self.rhs.srid = geo_fld.srid
|
2015-03-17 08:38:55 +08:00
|
|
|
elif isinstance(self.rhs, Expression):
|
2016-04-22 00:03:14 +08:00
|
|
|
raise ValueError('Complex expressions not supported for spatial fields.')
|
2014-05-23 03:51:30 +08:00
|
|
|
elif isinstance(self.rhs, (list, tuple)):
|
|
|
|
geom = self.rhs[0]
|
2016-04-22 00:03:14 +08:00
|
|
|
# Check if a band index was passed in the query argument.
|
|
|
|
if ((len(self.rhs) == 2 and not self.lookup_name == 'relate') or
|
|
|
|
(len(self.rhs) == 3 and self.lookup_name == 'relate')):
|
|
|
|
self.process_band_indices()
|
|
|
|
elif len(self.rhs) > 2:
|
|
|
|
raise ValueError('Tuple too long for lookup %s.' % self.lookup_name)
|
|
|
|
elif isinstance(self.lhs, RasterBandTransform):
|
|
|
|
self.process_band_indices(only_lhs=True)
|
|
|
|
|
|
|
|
rhs, rhs_params = super(GISLookup, self).process_rhs(compiler, connection)
|
2014-11-16 09:56:42 +08:00
|
|
|
rhs = connection.ops.get_geom_placeholder(self.lhs.output_field, geom, compiler)
|
2014-05-23 03:51:30 +08:00
|
|
|
return rhs, rhs_params
|
|
|
|
|
2015-09-23 15:25:08 +08:00
|
|
|
def get_rhs_op(self, connection, rhs):
|
|
|
|
# Unlike BuiltinLookup, the GIS get_rhs_op() implementation should return
|
|
|
|
# an object (SpatialOperator) with an as_sql() method to allow for more
|
|
|
|
# complex computations (where the lhs part can be mixed in).
|
|
|
|
return connection.ops.gis_operators[self.lookup_name]
|
|
|
|
|
2014-11-16 09:56:42 +08:00
|
|
|
def as_sql(self, compiler, connection):
|
|
|
|
lhs_sql, sql_params = self.process_lhs(compiler, connection)
|
|
|
|
rhs_sql, rhs_params = self.process_rhs(compiler, connection)
|
2014-05-23 03:51:30 +08:00
|
|
|
sql_params.extend(rhs_params)
|
|
|
|
|
2015-10-07 04:05:53 +08:00
|
|
|
template_params = {'lhs': lhs_sql, 'rhs': rhs_sql, 'value': '%s'}
|
|
|
|
template_params.update(self.template_params)
|
2015-09-23 15:25:08 +08:00
|
|
|
rhs_op = self.get_rhs_op(connection, rhs_sql)
|
|
|
|
return rhs_op.as_sql(connection, self, template_params, sql_params)
|
2014-05-23 03:51:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
# ------------------
|
|
|
|
# Geometry operators
|
|
|
|
# ------------------
|
|
|
|
|
|
|
|
class OverlapsLeftLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The overlaps_left operator returns true if A's bounding box overlaps or is to the
|
|
|
|
left of B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'overlaps_left'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['overlaps_left'] = OverlapsLeftLookup
|
|
|
|
|
|
|
|
|
|
|
|
class OverlapsRightLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'overlaps_right' operator returns true if A's bounding box overlaps or is to the
|
|
|
|
right of B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'overlaps_right'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['overlaps_right'] = OverlapsRightLookup
|
|
|
|
|
|
|
|
|
|
|
|
class OverlapsBelowLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'overlaps_below' operator returns true if A's bounding box overlaps or is below
|
|
|
|
B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'overlaps_below'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['overlaps_below'] = OverlapsBelowLookup
|
|
|
|
|
|
|
|
|
|
|
|
class OverlapsAboveLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'overlaps_above' operator returns true if A's bounding box overlaps or is above
|
|
|
|
B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'overlaps_above'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['overlaps_above'] = OverlapsAboveLookup
|
|
|
|
|
|
|
|
|
|
|
|
class LeftLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'left' operator returns true if A's bounding box is strictly to the left
|
|
|
|
of B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'left'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['left'] = LeftLookup
|
|
|
|
|
|
|
|
|
|
|
|
class RightLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'right' operator returns true if A's bounding box is strictly to the right
|
|
|
|
of B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'right'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['right'] = RightLookup
|
|
|
|
|
|
|
|
|
|
|
|
class StrictlyBelowLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'strictly_below' operator returns true if A's bounding box is strictly below B's
|
|
|
|
bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'strictly_below'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['strictly_below'] = StrictlyBelowLookup
|
|
|
|
|
|
|
|
|
|
|
|
class StrictlyAboveLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'strictly_above' operator returns true if A's bounding box is strictly above B's
|
|
|
|
bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'strictly_above'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['strictly_above'] = StrictlyAboveLookup
|
|
|
|
|
|
|
|
|
|
|
|
class SameAsLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The "~=" operator is the "same as" operator. It tests actual geometric
|
|
|
|
equality of two features. So if A and B are the same feature,
|
|
|
|
vertex-by-vertex, the operator returns true.
|
|
|
|
"""
|
|
|
|
lookup_name = 'same_as'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['same_as'] = SameAsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class ExactLookup(SameAsLookup):
|
|
|
|
# Alias of same_as
|
|
|
|
lookup_name = 'exact'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['exact'] = ExactLookup
|
|
|
|
|
|
|
|
|
|
|
|
class BBContainsLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'bbcontains' operator returns true if A's bounding box completely contains
|
|
|
|
by B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'bbcontains'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['bbcontains'] = BBContainsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class BBOverlapsLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'bboverlaps' operator returns true if A's bounding box overlaps B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'bboverlaps'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['bboverlaps'] = BBOverlapsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class ContainedLookup(GISLookup):
|
|
|
|
"""
|
|
|
|
The 'contained' operator returns true if A's bounding box is completely contained
|
|
|
|
by B's bounding box.
|
|
|
|
"""
|
|
|
|
lookup_name = 'contained'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['contained'] = ContainedLookup
|
|
|
|
|
|
|
|
|
|
|
|
# ------------------
|
|
|
|
# Geometry functions
|
|
|
|
# ------------------
|
|
|
|
|
|
|
|
class ContainsLookup(GISLookup):
|
|
|
|
lookup_name = 'contains'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['contains'] = ContainsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class ContainsProperlyLookup(GISLookup):
|
|
|
|
lookup_name = 'contains_properly'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['contains_properly'] = ContainsProperlyLookup
|
|
|
|
|
|
|
|
|
|
|
|
class CoveredByLookup(GISLookup):
|
|
|
|
lookup_name = 'coveredby'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['coveredby'] = CoveredByLookup
|
|
|
|
|
|
|
|
|
|
|
|
class CoversLookup(GISLookup):
|
|
|
|
lookup_name = 'covers'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['covers'] = CoversLookup
|
|
|
|
|
|
|
|
|
|
|
|
class CrossesLookup(GISLookup):
|
|
|
|
lookup_name = 'crosses'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['crosses'] = CrossesLookup
|
|
|
|
|
|
|
|
|
|
|
|
class DisjointLookup(GISLookup):
|
|
|
|
lookup_name = 'disjoint'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['disjoint'] = DisjointLookup
|
|
|
|
|
|
|
|
|
|
|
|
class EqualsLookup(GISLookup):
|
|
|
|
lookup_name = 'equals'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['equals'] = EqualsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class IntersectsLookup(GISLookup):
|
|
|
|
lookup_name = 'intersects'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['intersects'] = IntersectsLookup
|
|
|
|
|
|
|
|
|
2016-12-01 00:22:56 +08:00
|
|
|
class IsValidLookup(GISLookup):
|
2016-04-06 19:50:25 +08:00
|
|
|
lookup_name = 'isvalid'
|
2016-12-01 00:22:56 +08:00
|
|
|
sql_template = '%(func)s(%(lhs)s)'
|
2016-04-06 19:50:25 +08:00
|
|
|
|
|
|
|
def as_sql(self, compiler, connection):
|
2016-04-22 00:03:14 +08:00
|
|
|
if self.lhs.field.geom_type == 'RASTER':
|
|
|
|
raise ValueError('The isvalid lookup is only available on geometry fields.')
|
2016-04-06 19:50:25 +08:00
|
|
|
gis_op = connection.ops.gis_operators[self.lookup_name]
|
|
|
|
sql, params = self.process_lhs(compiler, connection)
|
2016-12-01 00:22:56 +08:00
|
|
|
sql, params = gis_op.as_sql(connection, self, {'func': gis_op.func, 'lhs': sql}, params)
|
2016-04-06 19:50:25 +08:00
|
|
|
if not self.rhs:
|
|
|
|
sql = 'NOT ' + sql
|
|
|
|
return sql, params
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2016-04-06 19:50:25 +08:00
|
|
|
gis_lookups['isvalid'] = IsValidLookup
|
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
class OverlapsLookup(GISLookup):
|
|
|
|
lookup_name = 'overlaps'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['overlaps'] = OverlapsLookup
|
|
|
|
|
|
|
|
|
|
|
|
class RelateLookup(GISLookup):
|
|
|
|
lookup_name = 'relate'
|
|
|
|
sql_template = '%(func)s(%(lhs)s, %(rhs)s, %%s)'
|
|
|
|
pattern_regex = re.compile(r'^[012TF\*]{9}$')
|
|
|
|
|
|
|
|
def get_db_prep_lookup(self, value, connection):
|
|
|
|
if len(value) != 2:
|
|
|
|
raise ValueError('relate must be passed a two-tuple')
|
|
|
|
# Check the pattern argument
|
|
|
|
backend_op = connection.ops.gis_operators[self.lookup_name]
|
|
|
|
if hasattr(backend_op, 'check_relate_argument'):
|
|
|
|
backend_op.check_relate_argument(value[1])
|
|
|
|
else:
|
|
|
|
pattern = value[1]
|
|
|
|
if not isinstance(pattern, six.string_types) or not self.pattern_regex.match(pattern):
|
|
|
|
raise ValueError('Invalid intersection matrix pattern "%s".' % pattern)
|
|
|
|
return super(RelateLookup, self).get_db_prep_lookup(value, connection)
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['relate'] = RelateLookup
|
|
|
|
|
|
|
|
|
|
|
|
class TouchesLookup(GISLookup):
|
|
|
|
lookup_name = 'touches'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['touches'] = TouchesLookup
|
|
|
|
|
|
|
|
|
|
|
|
class WithinLookup(GISLookup):
|
|
|
|
lookup_name = 'within'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['within'] = WithinLookup
|
|
|
|
|
|
|
|
|
|
|
|
class DistanceLookupBase(GISLookup):
|
|
|
|
distance = True
|
2015-10-07 04:05:53 +08:00
|
|
|
sql_template = '%(func)s(%(lhs)s, %(rhs)s) %(op)s %(value)s'
|
2014-05-23 03:51:30 +08:00
|
|
|
|
2015-10-07 04:05:53 +08:00
|
|
|
def process_rhs(self, compiler, connection):
|
2016-04-22 00:03:14 +08:00
|
|
|
if not isinstance(self.rhs, (tuple, list)) or not 2 <= len(self.rhs) <= 4:
|
|
|
|
raise ValueError("2, 3, or 4-element tuple required for '%s' lookup." % self.lookup_name)
|
|
|
|
elif len(self.rhs) == 4 and not self.rhs[3] == 'spheroid':
|
|
|
|
raise ValueError("For 4-element tuples the last argument must be the 'speroid' directive.")
|
|
|
|
|
|
|
|
# Check if the second parameter is a band index.
|
|
|
|
if len(self.rhs) > 2 and not self.rhs[2] == 'spheroid':
|
|
|
|
self.process_band_indices()
|
|
|
|
|
2015-10-07 04:05:53 +08:00
|
|
|
params = [connection.ops.Adapter(self.rhs[0])]
|
2016-04-22 00:03:14 +08:00
|
|
|
|
2015-10-07 04:05:53 +08:00
|
|
|
# Getting the distance parameter in the units of the field.
|
|
|
|
dist_param = self.rhs[1]
|
|
|
|
if hasattr(dist_param, 'resolve_expression'):
|
|
|
|
dist_param = dist_param.resolve_expression(compiler.query)
|
|
|
|
sql, expr_params = compiler.compile(dist_param)
|
|
|
|
self.template_params['value'] = sql
|
|
|
|
params.extend(expr_params)
|
2014-05-23 03:51:30 +08:00
|
|
|
else:
|
2015-10-07 04:05:53 +08:00
|
|
|
params += connection.ops.get_distance(
|
|
|
|
self.lhs.output_field, (dist_param,) + self.rhs[2:],
|
|
|
|
self.lookup_name, handle_spheroid=False
|
|
|
|
)
|
|
|
|
rhs = connection.ops.get_geom_placeholder(self.lhs.output_field, params[0], compiler)
|
|
|
|
return (rhs, params)
|
2014-05-23 03:51:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
class DWithinLookup(DistanceLookupBase):
|
|
|
|
lookup_name = 'dwithin'
|
|
|
|
sql_template = '%(func)s(%(lhs)s, %(rhs)s, %%s)'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['dwithin'] = DWithinLookup
|
|
|
|
|
|
|
|
|
|
|
|
class DistanceGTLookup(DistanceLookupBase):
|
|
|
|
lookup_name = 'distance_gt'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['distance_gt'] = DistanceGTLookup
|
|
|
|
|
|
|
|
|
|
|
|
class DistanceGTELookup(DistanceLookupBase):
|
|
|
|
lookup_name = 'distance_gte'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['distance_gte'] = DistanceGTELookup
|
|
|
|
|
|
|
|
|
|
|
|
class DistanceLTLookup(DistanceLookupBase):
|
|
|
|
lookup_name = 'distance_lt'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['distance_lt'] = DistanceLTLookup
|
|
|
|
|
|
|
|
|
|
|
|
class DistanceLTELookup(DistanceLookupBase):
|
|
|
|
lookup_name = 'distance_lte'
|
2016-11-13 01:11:23 +08:00
|
|
|
|
|
|
|
|
2014-05-23 03:51:30 +08:00
|
|
|
gis_lookups['distance_lte'] = DistanceLTELookup
|