Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to figure out the snap_to_grid() method, which appears to do what I want, but I'm not sure how to use it.

I have a model with several point fields:

class PointsOfInterest(models.Model):
    name = models.CharField(max_length=150)
    center = models.PointField()
    point2 = models.PointField()
    point3 = models.PointField()

I would like to query all points snapping them to a grid so that points near each other come back with the same location (basically aggregating/grouping by grid location).

>>> print  PointsOfInterest.objects.snap_to_grid(300, field_name="center")[0].center
POINT (368411.6666666666860692 2899475.0000000000000000)
>>> print  PointsOfInterest.objects.all()[0].center
POINT (368411.6666666666860692 2899475.0000000000000000)

It doesn't seem to be doing anything as the points aren't changing. I've tried the .transform() operation and that is responsive and updates the point to the desired projection.

Am I misunderstanding how this method works, or is there a way to do this?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.