summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py
diff options
context:
space:
mode:
authorttt2017-05-13 00:29:47 +0530
committerttt2017-05-13 00:29:47 +0530
commitabf599be33b383a6a5baf9493093b2126a622ac8 (patch)
tree4c5ab6e0d935d5e65fabcf0258e4a00dd20a5afa /lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py
downloadSBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.gz
SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.bz2
SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.zip
added all server files
Diffstat (limited to 'lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py')
-rw-r--r--lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py b/lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py
new file mode 100644
index 0000000..fa83859
--- /dev/null
+++ b/lib/python2.7/site-packages/django/contrib/gis/tests/geoapp/models.py
@@ -0,0 +1,56 @@
+from django.contrib.gis.db import models
+from django.contrib.gis.tests.utils import mysql, spatialite
+from django.utils.encoding import python_2_unicode_compatible
+
+# MySQL spatial indices can't handle NULL geometries.
+null_flag = not mysql
+
+@python_2_unicode_compatible
+class Country(models.Model):
+ name = models.CharField(max_length=30)
+ mpoly = models.MultiPolygonField() # SRID, by default, is 4326
+ objects = models.GeoManager()
+ def __str__(self): return self.name
+
+@python_2_unicode_compatible
+class City(models.Model):
+ name = models.CharField(max_length=30)
+ point = models.PointField()
+ objects = models.GeoManager()
+ def __str__(self): return self.name
+
+# This is an inherited model from City
+class PennsylvaniaCity(City):
+ county = models.CharField(max_length=30)
+ founded = models.DateTimeField(null=True)
+ objects = models.GeoManager() # TODO: This should be implicitly inherited.
+
+@python_2_unicode_compatible
+class State(models.Model):
+ name = models.CharField(max_length=30)
+ poly = models.PolygonField(null=null_flag) # Allowing NULL geometries here.
+ objects = models.GeoManager()
+ def __str__(self): return self.name
+
+@python_2_unicode_compatible
+class Track(models.Model):
+ name = models.CharField(max_length=30)
+ line = models.LineStringField()
+ objects = models.GeoManager()
+ def __str__(self): return self.name
+
+class Truth(models.Model):
+ val = models.BooleanField(default=False)
+ objects = models.GeoManager()
+
+if not spatialite:
+ @python_2_unicode_compatible
+ class Feature(models.Model):
+ name = models.CharField(max_length=20)
+ geom = models.GeometryField()
+ objects = models.GeoManager()
+ def __str__(self): return self.name
+
+ class MinusOneSRID(models.Model):
+ geom = models.PointField(srid=-1) # Minus one SRID.
+ objects = models.GeoManager()