PageRenderTime 52ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/build/lib.linux-x86_64-2.7/django/contrib/gis/tests/geo3d/tests.py

https://bitbucket.org/pcelta/python-django
Python | 233 lines | 151 code | 31 blank | 51 comment | 11 complexity | d6610f8b5013b507f10f147587ecbd54 MD5 | raw file
Possible License(s): BSD-3-Clause
  1. from __future__ import absolute_import
  2. import os
  3. import re
  4. from django.utils.unittest import TestCase
  5. from django.contrib.gis.db.models import Union, Extent3D
  6. from django.contrib.gis.geos import GEOSGeometry, Point, Polygon
  7. from django.contrib.gis.utils import LayerMapping, LayerMapError
  8. from .models import (City3D, Interstate2D, Interstate3D, InterstateProj2D,
  9. InterstateProj3D, Point2D, Point3D, MultiPoint3D, Polygon2D, Polygon3D)
  10. data_path = os.path.realpath(os.path.join(os.path.dirname(__file__), '..', 'data'))
  11. city_file = os.path.join(data_path, 'cities', 'cities.shp')
  12. vrt_file = os.path.join(data_path, 'test_vrt', 'test_vrt.vrt')
  13. # The coordinates of each city, with Z values corresponding to their
  14. # altitude in meters.
  15. city_data = (
  16. ('Houston', (-95.363151, 29.763374, 18)),
  17. ('Dallas', (-96.801611, 32.782057, 147)),
  18. ('Oklahoma City', (-97.521157, 34.464642, 380)),
  19. ('Wellington', (174.783117, -41.315268, 14)),
  20. ('Pueblo', (-104.609252, 38.255001, 1433)),
  21. ('Lawrence', (-95.235060, 38.971823, 251)),
  22. ('Chicago', (-87.650175, 41.850385, 181)),
  23. ('Victoria', (-123.305196, 48.462611, 15)),
  24. )
  25. # Reference mapping of city name to its altitude (Z value).
  26. city_dict = dict((name, coords) for name, coords in city_data)
  27. # 3D freeway data derived from the National Elevation Dataset:
  28. # http://seamless.usgs.gov/products/9arc.php
  29. interstate_data = (
  30. ('I-45',
  31. 'LINESTRING(-95.3708481 29.7765870 11.339,-95.3694580 29.7787980 4.536,-95.3690305 29.7797359 9.762,-95.3691886 29.7812450 12.448,-95.3696447 29.7850144 10.457,-95.3702511 29.7868518 9.418,-95.3706724 29.7881286 14.858,-95.3711632 29.7896157 15.386,-95.3714525 29.7936267 13.168,-95.3717848 29.7955007 15.104,-95.3717719 29.7969804 16.516,-95.3717305 29.7982117 13.923,-95.3717254 29.8000778 14.385,-95.3719875 29.8013539 15.160,-95.3720575 29.8026785 15.544,-95.3721321 29.8040912 14.975,-95.3722074 29.8050998 15.688,-95.3722779 29.8060430 16.099,-95.3733818 29.8076750 15.197,-95.3741563 29.8103686 17.268,-95.3749458 29.8129927 19.857,-95.3763564 29.8144557 15.435)',
  32. ( 11.339, 4.536, 9.762, 12.448, 10.457, 9.418, 14.858,
  33. 15.386, 13.168, 15.104, 16.516, 13.923, 14.385, 15.16 ,
  34. 15.544, 14.975, 15.688, 16.099, 15.197, 17.268, 19.857,
  35. 15.435),
  36. ),
  37. )
  38. # Bounding box polygon for inner-loop of Houston (in projected coordinate
  39. # system 32140), with elevation values from the National Elevation Dataset
  40. # (see above).
  41. bbox_wkt = 'POLYGON((941527.97 4225693.20,962596.48 4226349.75,963152.57 4209023.95,942051.75 4208366.38,941527.97 4225693.20))'
  42. bbox_z = (21.71, 13.21, 9.12, 16.40, 21.71)
  43. def gen_bbox():
  44. bbox_2d = GEOSGeometry(bbox_wkt, srid=32140)
  45. bbox_3d = Polygon(tuple((x, y, z) for (x, y), z in zip(bbox_2d[0].coords, bbox_z)), srid=32140)
  46. return bbox_2d, bbox_3d
  47. class Geo3DTest(TestCase):
  48. """
  49. Only a subset of the PostGIS routines are 3D-enabled, and this TestCase
  50. tries to test the features that can handle 3D and that are also
  51. available within GeoDjango. For more information, see the PostGIS docs
  52. on the routines that support 3D:
  53. http://postgis.refractions.net/documentation/manual-1.4/ch08.html#PostGIS_3D_Functions
  54. """
  55. def test01_3d(self):
  56. "Test the creation of 3D models."
  57. # 3D models for the rest of the tests will be populated in here.
  58. # For each 3D data set create model (and 2D version if necessary),
  59. # retrieve, and assert geometry is in 3D and contains the expected
  60. # 3D values.
  61. for name, pnt_data in city_data:
  62. x, y, z = pnt_data
  63. pnt = Point(x, y, z, srid=4326)
  64. City3D.objects.create(name=name, point=pnt)
  65. city = City3D.objects.get(name=name)
  66. self.assertTrue(city.point.hasz)
  67. self.assertEqual(z, city.point.z)
  68. # Interstate (2D / 3D and Geographic/Projected variants)
  69. for name, line, exp_z in interstate_data:
  70. line_3d = GEOSGeometry(line, srid=4269)
  71. # Using `hex` attribute because it omits 3D.
  72. line_2d = GEOSGeometry(line_3d.hex, srid=4269)
  73. # Creating a geographic and projected version of the
  74. # interstate in both 2D and 3D.
  75. Interstate3D.objects.create(name=name, line=line_3d)
  76. InterstateProj3D.objects.create(name=name, line=line_3d)
  77. Interstate2D.objects.create(name=name, line=line_2d)
  78. InterstateProj2D.objects.create(name=name, line=line_2d)
  79. # Retrieving and making sure it's 3D and has expected
  80. # Z values -- shouldn't change because of coordinate system.
  81. interstate = Interstate3D.objects.get(name=name)
  82. interstate_proj = InterstateProj3D.objects.get(name=name)
  83. for i in [interstate, interstate_proj]:
  84. self.assertTrue(i.line.hasz)
  85. self.assertEqual(exp_z, tuple(i.line.z))
  86. # Creating 3D Polygon.
  87. bbox2d, bbox3d = gen_bbox()
  88. Polygon2D.objects.create(name='2D BBox', poly=bbox2d)
  89. Polygon3D.objects.create(name='3D BBox', poly=bbox3d)
  90. p3d = Polygon3D.objects.get(name='3D BBox')
  91. self.assertTrue(p3d.poly.hasz)
  92. self.assertEqual(bbox3d, p3d.poly)
  93. def test01a_3d_layermapping(self):
  94. "Testing LayerMapping on 3D models."
  95. from .models import Point2D, Point3D
  96. point_mapping = {'point' : 'POINT'}
  97. mpoint_mapping = {'mpoint' : 'MULTIPOINT'}
  98. # The VRT is 3D, but should still be able to map sans the Z.
  99. lm = LayerMapping(Point2D, vrt_file, point_mapping, transform=False)
  100. lm.save()
  101. self.assertEqual(3, Point2D.objects.count())
  102. # The city shapefile is 2D, and won't be able to fill the coordinates
  103. # in the 3D model -- thus, a LayerMapError is raised.
  104. self.assertRaises(LayerMapError, LayerMapping,
  105. Point3D, city_file, point_mapping, transform=False)
  106. # 3D model should take 3D data just fine.
  107. lm = LayerMapping(Point3D, vrt_file, point_mapping, transform=False)
  108. lm.save()
  109. self.assertEqual(3, Point3D.objects.count())
  110. # Making sure LayerMapping.make_multi works right, by converting
  111. # a Point25D into a MultiPoint25D.
  112. lm = LayerMapping(MultiPoint3D, vrt_file, mpoint_mapping, transform=False)
  113. lm.save()
  114. self.assertEqual(3, MultiPoint3D.objects.count())
  115. def test02a_kml(self):
  116. "Test GeoQuerySet.kml() with Z values."
  117. h = City3D.objects.kml(precision=6).get(name='Houston')
  118. # KML should be 3D.
  119. # `SELECT ST_AsKML(point, 6) FROM geo3d_city3d WHERE name = 'Houston';`
  120. ref_kml_regex = re.compile(r'^<Point><coordinates>-95.363\d+,29.763\d+,18</coordinates></Point>$')
  121. self.assertTrue(ref_kml_regex.match(h.kml))
  122. def test02b_geojson(self):
  123. "Test GeoQuerySet.geojson() with Z values."
  124. h = City3D.objects.geojson(precision=6).get(name='Houston')
  125. # GeoJSON should be 3D
  126. # `SELECT ST_AsGeoJSON(point, 6) FROM geo3d_city3d WHERE name='Houston';`
  127. ref_json_regex = re.compile(r'^{"type":"Point","coordinates":\[-95.363151,29.763374,18(\.0+)?\]}$')
  128. self.assertTrue(ref_json_regex.match(h.geojson))
  129. def test03a_union(self):
  130. "Testing the Union aggregate of 3D models."
  131. # PostGIS query that returned the reference EWKT for this test:
  132. # `SELECT ST_AsText(ST_Union(point)) FROM geo3d_city3d;`
  133. ref_ewkt = 'SRID=4326;MULTIPOINT(-123.305196 48.462611 15,-104.609252 38.255001 1433,-97.521157 34.464642 380,-96.801611 32.782057 147,-95.363151 29.763374 18,-95.23506 38.971823 251,-87.650175 41.850385 181,174.783117 -41.315268 14)'
  134. ref_union = GEOSGeometry(ref_ewkt)
  135. union = City3D.objects.aggregate(Union('point'))['point__union']
  136. self.assertTrue(union.hasz)
  137. self.assertEqual(ref_union, union)
  138. def test03b_extent(self):
  139. "Testing the Extent3D aggregate for 3D models."
  140. # `SELECT ST_Extent3D(point) FROM geo3d_city3d;`
  141. ref_extent3d = (-123.305196, -41.315268, 14,174.783117, 48.462611, 1433)
  142. extent1 = City3D.objects.aggregate(Extent3D('point'))['point__extent3d']
  143. extent2 = City3D.objects.extent3d()
  144. def check_extent3d(extent3d, tol=6):
  145. for ref_val, ext_val in zip(ref_extent3d, extent3d):
  146. self.assertAlmostEqual(ref_val, ext_val, tol)
  147. for e3d in [extent1, extent2]:
  148. check_extent3d(e3d)
  149. def test04_perimeter(self):
  150. "Testing GeoQuerySet.perimeter() on 3D fields."
  151. # Reference query for values below:
  152. # `SELECT ST_Perimeter3D(poly), ST_Perimeter2D(poly) FROM geo3d_polygon3d;`
  153. ref_perim_3d = 76859.2620451
  154. ref_perim_2d = 76859.2577803
  155. tol = 6
  156. self.assertAlmostEqual(ref_perim_2d,
  157. Polygon2D.objects.perimeter().get(name='2D BBox').perimeter.m,
  158. tol)
  159. self.assertAlmostEqual(ref_perim_3d,
  160. Polygon3D.objects.perimeter().get(name='3D BBox').perimeter.m,
  161. tol)
  162. def test05_length(self):
  163. "Testing GeoQuerySet.length() on 3D fields."
  164. # ST_Length_Spheroid Z-aware, and thus does not need to use
  165. # a separate function internally.
  166. # `SELECT ST_Length_Spheroid(line, 'SPHEROID["GRS 1980",6378137,298.257222101]')
  167. # FROM geo3d_interstate[2d|3d];`
  168. tol = 3
  169. ref_length_2d = 4368.1721949481
  170. ref_length_3d = 4368.62547052088
  171. self.assertAlmostEqual(ref_length_2d,
  172. Interstate2D.objects.length().get(name='I-45').length.m,
  173. tol)
  174. self.assertAlmostEqual(ref_length_3d,
  175. Interstate3D.objects.length().get(name='I-45').length.m,
  176. tol)
  177. # Making sure `ST_Length3D` is used on for a projected
  178. # and 3D model rather than `ST_Length`.
  179. # `SELECT ST_Length(line) FROM geo3d_interstateproj2d;`
  180. ref_length_2d = 4367.71564892392
  181. # `SELECT ST_Length3D(line) FROM geo3d_interstateproj3d;`
  182. ref_length_3d = 4368.16897234101
  183. self.assertAlmostEqual(ref_length_2d,
  184. InterstateProj2D.objects.length().get(name='I-45').length.m,
  185. tol)
  186. self.assertAlmostEqual(ref_length_3d,
  187. InterstateProj3D.objects.length().get(name='I-45').length.m,
  188. tol)
  189. def test06_scale(self):
  190. "Testing GeoQuerySet.scale() on Z values."
  191. # Mapping of City name to reference Z values.
  192. zscales = (-3, 4, 23)
  193. for zscale in zscales:
  194. for city in City3D.objects.scale(1.0, 1.0, zscale):
  195. self.assertEqual(city_dict[city.name][2] * zscale, city.scale.z)
  196. def test07_translate(self):
  197. "Testing GeoQuerySet.translate() on Z values."
  198. ztranslations = (5.23, 23, -17)
  199. for ztrans in ztranslations:
  200. for city in City3D.objects.translate(0, 0, ztrans):
  201. self.assertEqual(city_dict[city.name][2] + ztrans, city.translate.z)