GeoDjango & SpatiaLite - filtering nearby objects

2019-07-05 00:49发布

My models.py has User and Business models that have this field:

location = PointField(geography=True)

I'm getting Google Maps coordinates (in EPSG 4326) via Geocode service from an address which the user specifies.
Then I'm saving it in the above field (also EPSG 4326).

Now, what I want is to get all Business objects within a specified radius (of 1km for example), based on the user location:

Business.gis.filter(location__distance_lt=(request.user.location, D(km=1)))

But it doesn't work, it gives me this error:

ValueError: SpatiaLite does not support distance queries on geometry fields with a geodetic coordinate system. Distance objects; use a numeric value of your distance in degrees instead.

So, does anyone know how to properly solve this? Thanks in advance!

1条回答
做自己的国王
2楼-- · 2019-07-05 01:28

Theory:

This is a pretty obscure error related to those two:

Since you are using geodetic coordinate systems (like the EPSG 4326) you need to provide the distance in degrees.

Here is a very good explanation on how to transform km to degrees accurately enough: How do I convert kilometres to degrees in Geodjango/GEOS?

Finally I would suggest to use the dwithin.


Praxis:

  • 1km ~= 0.008 deg
  • The query now should look:

    Business.gis.filter(location__dwithin=(request.user.location, 0.008))
    
查看更多
登录 后发表回答