Replies: 5 comments 1 reply
-
Not really... what would it need? Custom Filter subclasses? |
Beta Was this translation helpful? Give feedback.
-
Yes and it receive 2 inputs at the same time. I had read the doc. It does receive only 1 input at a time |
Beta Was this translation helpful? Give feedback.
-
@carltongibson @elcolie Also looking into some GeoDjango functionality, specifically a PointField (or MultiPointField) with a circular radius around (each) point. It really helps when using with location based apps. I'd be willing to help, but Carlton knows much more about Django than me, so I'd like some assistance in knowing what to write before starting a draft PR. Some pointers that we could do for the (Multi)PolygonField would be distance from, within, or on the edge. Not sure about the LineStringField. I guess some issues with supporting GeoDjango is the extent of it all. I had a lot of confusion when programming my first geolocation-based app with Django, so clear communication would be necessary for Django-filters. I guess another issue would be which database to allow in tests/settings.py for geolocation development. For most people, that'd be using PostGIS (we can add the geolocation database in Idk, thoughts? Like how would I/we go about this? I'd much rather have the geolocation functionality in the main repo rather than in a plug-in repo so that everything is simultaneously updated. |
Beta Was this translation helpful? Give feedback.
-
OK... SO... A django-filter
So some examples. And then what of those are needed? |
Beta Was this translation helpful? Give feedback.
-
Thanks for the reply! I think I was more focused on url encoded filtering and basically neglecting forms -- the ui -- altogether. Addressing points:
I'm not too well versed about the Django widgets, so I'm not too well aware about their methods of mapping out the multitude of field lookups for GeoDjango (within, covers, intersects, etc.). |
Beta Was this translation helpful? Give feedback.
-
Do you have plan to support
postgis
?For example search that read the
point
anddistance
at the same timeBeta Was this translation helpful? Give feedback.
All reactions