I want to make a geographical within query on a set of geometry objects. That is, I want to fetch objects that fall into a list of geometries.
In my case, a user can follow locations; and posts are linked to locations as follows:
class UserProfile(models.Model):
user = models.ForeignKey(User)
followed_locations = models.ManyToManyField(Location)
class Location(models.Model):
name = models.CharField(max_length=100)
geom = models.GeometryField()
class Post(models.Model):
location = models.ForeignKey(Location)
text = models.TextField()
For a given user, I want to fetch posts which fall geographically into locations that the user follows. That is, if for example Germany is among the locations that the user is following, a post which is referencing Berlin will also be fetched.
To do this, best way I can think of is to loop through all the locations that the user follows and make a GeometryCollection object and query within that object with something like this:
gc = GeometryCollection([l.geom for l in profile.followed_locations.all()])
posts = Post.objects.filter(location__geom__within=gc)
As the user may be following many locations this can be expensive I think. What is the best way to do this?