Django integration for geocoding (using Geocodio)
Project description
Django features for simple geocoding. Current support for the Geocodio geocoding service
Read the full docs on Read the Docs.
Installing
Install dj-geocoding:
pip install dj-geocoding
Then use it in a project:
import dj-geocoding
Add your geocoding service API credentials to your settings.py file:
GEOCODIO_API_KEY="SOMEAPIKEY"
Model
Use the optional model mixin to your model if you aren’t using PostGIS:
from dj_geocoding.models import GeoBase class MyModel(GeoBase, models.Model): pass
This adds the followng fields:
latitude = models.DecimalField(decimal_places=15, max_digits=18, null=True, blank=True) longitude = models.DecimalField(decimal_places=15, max_digits=18, null=True, blank=True)
Adds a geocode method:
def geocode(self, \*args, \**kwargs): return geocode()
You should extend this in your model, providing the field(s) from which the address will be pulled:
def geocode(self): return super(MyModel, self).geocode('address')
You can choose the separator for providing a single address, too:
def geocode(self): return super(MyModel, self).geocode('street_address', 'city', 'state', seperator=", ")
And additional property attributes for the point attribute.
Bulk geocoding
The bulk_geocode function takes a queryset and geocodes its member objects.
Example:
geocoded_qs = bulk_geocode(MyModel.objects.all())
Specifying the field name:
geocoded_qs = bulk_geocode(MyModel.objects.all(), field='point')
Manager
The manager class implements a subclassed QuerySet with a geocode method:
MyModel.objects.all().geocode()
This returns a queryset of the objects updated (or not) that fit within the limits of the geocoding service. It is a convenient interface tot he bulk_geocode function.
Admin site
The GeocodedFilter filter can be used to filter locations in the admin based on whether they have been geolocated or not.
The GeolocateMixin class can be added to your ModelAdmin definition to add the geocode_address admin action. This adds the “geocode address” action to the admin actions dropdown menu and then will allow you to geocode an entire queryset from the admin.
History
0.2.1 (2014-12-02)
Removes reliance on queryset geocode method in admin action
Adds docs
0.2.0 (2014-09-08)
Revise has_geolocation method, remove property status
Added list filter class GeocodedFilter
0.1.1 (2014-08-26)
Bug fix for handling single None value in _set_point
0.1.0 (2014-08-26)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file dj-geocoding-0.2.1.tar.gz
.
File metadata
- Download URL: dj-geocoding-0.2.1.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70d65ab60c916dea2dadc6694156e74b06b8e9cc5ff01c6e2a5f72bd9701f5d7 |
|
MD5 | 1ea37ed5d81eb881dfde21e6a8ddb071 |
|
BLAKE2b-256 | 165f6cd266a53d626eb48bc73067c69e5461fe866b2e9afb3f73ac0dfd2fb64d |