2021-11-26 02:49:40 +00:00
|
|
|
from builtins import object
|
2010-09-26 21:32:53 +00:00
|
|
|
from django.db import models
|
|
|
|
|
|
|
|
class EarthLocation(models.Model):
|
|
|
|
"""Represents latitude and longitude, with a label"""
|
|
|
|
|
|
|
|
label = models.CharField(max_length=300, unique=True)
|
|
|
|
latitude = models.DecimalField(max_digits=9, decimal_places=6)
|
|
|
|
longitude = models.DecimalField(max_digits=9, decimal_places=6)
|
|
|
|
|
|
|
|
date_created = models.DateTimeField(auto_now_add=True)
|
|
|
|
date_last_modified = models.DateTimeField(auto_now=True)
|
|
|
|
|
2021-11-26 02:49:40 +00:00
|
|
|
class Meta(object):
|
2010-09-26 21:32:53 +00:00
|
|
|
unique_together = (("latitude", "longitude"),)
|
|
|
|
|
2022-01-10 22:13:46 +00:00
|
|
|
def __str__(self):
|
2010-09-26 21:32:53 +00:00
|
|
|
return self.label
|
|
|
|
|
|
|
|
def google_maps_link(self):
|
|
|
|
return ("http://maps.google.com/maps?ll=%s,%s&z=15"
|
|
|
|
% (self.latitude, self.longitude))
|
|
|
|
|
|
|
|
default_map_link = google_maps_link
|
|
|
|
|
|
|
|
def html_map_link(self): # for Admin, fixme: fix_ampersands
|
|
|
|
return '<a href="%s">map link</a>' % self.default_map_link()
|
|
|
|
html_map_link.allow_tags = True
|
|
|
|
|