I have a django.contrib.gis.geos.point.Point subclass:
from django.contrib.gis.geos import Point
class Location(Point):
def __init__(self, *args, **kwargs):
lat = kwargs.get('latitude')
lng = kwargs.get('longitude')
if lat and lng:
super(Location, self).__init__(lng, lat)
elif lat or lng:
raise TypeError(u'You must declare latitude and longitude, not '
'just one of them.')
else:
super(Location, self).__init__(*args, **kwargs)
self.__class__ = Location
def __unicode__(self):
c = self.coordinates()
return u'Location <Lat: %.5f, Lng: %.5f>' % (c['latitude'],
c['longitude'])
def __str__(self):
return unicode(self).encode('utf-8')
def coordinates(self):
return {
'latitude': self.coords[1],
'longitude': self.coords[0]
}
Notice that this class has no extra information compared to super. It has only extra methods to facilitate its usage.
How can I create a django.contrib.gis.db.models.fields.PointField subclass to use with Location? If I use PointField directly, it allows me to store a Location (because it is essentially a Point), But when I retrieve its content, it returns a Point.
How can I achieve this?