tutorial.txt 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772
  1. ==================
  2. GeoDjango Tutorial
  3. ==================
  4. Introduction
  5. ============
  6. GeoDjango is an included contrib module for Django that turns it into a
  7. world-class geographic Web framework. GeoDjango strives to make it as simple
  8. as possible to create geographic Web applications, like location-based services.
  9. Its features include:
  10. * Django model fields for `OGC`_ geometries and raster data.
  11. * Extensions to Django's ORM for querying and manipulating spatial data.
  12. * Loosely-coupled, high-level Python interfaces for GIS geometry and raster
  13. operations and data manipulation in different formats.
  14. * Editing geometry fields from the admin.
  15. This tutorial assumes familiarity with Django; thus, if you're brand new to
  16. Django, please read through the :doc:`regular tutorial </intro/tutorial01>` to
  17. familiarize yourself with Django first.
  18. .. note::
  19. GeoDjango has additional requirements beyond what Django requires --
  20. please consult the :doc:`installation documentation <install/index>`
  21. for more details.
  22. This tutorial will guide you through the creation of a geographic web
  23. application for viewing the `world borders`_. [#]_ Some of the code
  24. used in this tutorial is taken from and/or inspired by the `GeoDjango
  25. basic apps`_ project. [#]_
  26. .. note::
  27. Proceed through the tutorial sections sequentially for step-by-step
  28. instructions.
  29. .. _OGC: https://www.opengeospatial.org/
  30. .. _world borders: https://thematicmapping.org/downloads/world_borders.php
  31. .. _GeoDjango basic apps: https://code.google.com/p/geodjango-basic-apps/
  32. Setting Up
  33. ==========
  34. Create a Spatial Database
  35. -------------------------
  36. Typically no special setup is required, so you can create a database as you
  37. would for any other project. We provide some tips for selected databases:
  38. * :doc:`install/postgis`
  39. * :doc:`install/spatialite`
  40. Create a New Project
  41. --------------------
  42. Use the standard ``django-admin`` script to create a project called
  43. ``geodjango``:
  44. .. console::
  45. $ django-admin startproject geodjango
  46. This will initialize a new project. Now, create a ``world`` Django application
  47. within the ``geodjango`` project:
  48. .. console::
  49. $ cd geodjango
  50. $ python manage.py startapp world
  51. Configure ``settings.py``
  52. -------------------------
  53. The ``geodjango`` project settings are stored in the ``geodjango/settings.py``
  54. file. Edit the database connection settings to match your setup::
  55. DATABASES = {
  56. 'default': {
  57. 'ENGINE': 'django.contrib.gis.db.backends.postgis',
  58. 'NAME': 'geodjango',
  59. 'USER': 'geo',
  60. },
  61. }
  62. In addition, modify the :setting:`INSTALLED_APPS` setting to include
  63. :mod:`django.contrib.admin`, :mod:`django.contrib.gis`,
  64. and ``world`` (your newly created application)::
  65. INSTALLED_APPS = [
  66. 'django.contrib.admin',
  67. 'django.contrib.auth',
  68. 'django.contrib.contenttypes',
  69. 'django.contrib.sessions',
  70. 'django.contrib.messages',
  71. 'django.contrib.staticfiles',
  72. 'django.contrib.gis',
  73. 'world',
  74. ]
  75. Geographic Data
  76. ===============
  77. .. _worldborders:
  78. World Borders
  79. -------------
  80. The world borders data is available in this `zip file`__. Create a ``data``
  81. directory in the ``world`` application, download the world borders data, and
  82. unzip. On GNU/Linux platforms, use the following commands:
  83. .. console::
  84. $ mkdir world/data
  85. $ cd world/data
  86. $ wget https://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip
  87. $ unzip TM_WORLD_BORDERS-0.3.zip
  88. $ cd ../..
  89. The world borders ZIP file contains a set of data files collectively known as
  90. an `ESRI Shapefile`__, one of the most popular geospatial data formats. When
  91. unzipped, the world borders dataset includes files with the following
  92. extensions:
  93. * ``.shp``: Holds the vector data for the world borders geometries.
  94. * ``.shx``: Spatial index file for geometries stored in the ``.shp``.
  95. * ``.dbf``: Database file for holding non-geometric attribute data
  96. (e.g., integer and character fields).
  97. * ``.prj``: Contains the spatial reference information for the geographic
  98. data stored in the shapefile.
  99. __ https://thematicmapping.org/downloads/TM_WORLD_BORDERS-0.3.zip
  100. __ https://en.wikipedia.org/wiki/Shapefile
  101. Use ``ogrinfo`` to examine spatial data
  102. ---------------------------------------
  103. The GDAL ``ogrinfo`` utility allows examining the metadata of shapefiles or
  104. other vector data sources:
  105. .. console::
  106. $ ogrinfo world/data/TM_WORLD_BORDERS-0.3.shp
  107. INFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp'
  108. using driver `ESRI Shapefile' successful.
  109. 1: TM_WORLD_BORDERS-0.3 (Polygon)
  110. ``ogrinfo`` tells us that the shapefile has one layer, and that this
  111. layer contains polygon data. To find out more, we'll specify the layer name
  112. and use the ``-so`` option to get only the important summary information:
  113. .. console::
  114. $ ogrinfo -so world/data/TM_WORLD_BORDERS-0.3.shp TM_WORLD_BORDERS-0.3
  115. INFO: Open of `world/data/TM_WORLD_BORDERS-0.3.shp'
  116. using driver `ESRI Shapefile' successful.
  117. Layer name: TM_WORLD_BORDERS-0.3
  118. Geometry: Polygon
  119. Feature Count: 246
  120. Extent: (-180.000000, -90.000000) - (180.000000, 83.623596)
  121. Layer SRS WKT:
  122. GEOGCS["GCS_WGS_1984",
  123. DATUM["WGS_1984",
  124. SPHEROID["WGS_1984",6378137.0,298.257223563]],
  125. PRIMEM["Greenwich",0.0],
  126. UNIT["Degree",0.0174532925199433]]
  127. FIPS: String (2.0)
  128. ISO2: String (2.0)
  129. ISO3: String (3.0)
  130. UN: Integer (3.0)
  131. NAME: String (50.0)
  132. AREA: Integer (7.0)
  133. POP2005: Integer (10.0)
  134. REGION: Integer (3.0)
  135. SUBREGION: Integer (3.0)
  136. LON: Real (8.3)
  137. LAT: Real (7.3)
  138. This detailed summary information tells us the number of features in the layer
  139. (246), the geographic bounds of the data, the spatial reference system
  140. ("SRS WKT"), as well as type information for each attribute field. For example,
  141. ``FIPS: String (2.0)`` indicates that the ``FIPS`` character field has
  142. a maximum length of 2. Similarly, ``LON: Real (8.3)`` is a floating-point
  143. field that holds a maximum of 8 digits up to three decimal places.
  144. Geographic Models
  145. =================
  146. Defining a Geographic Model
  147. ---------------------------
  148. Now that you've examined your dataset using ``ogrinfo``, create a GeoDjango
  149. model to represent this data::
  150. from django.contrib.gis.db import models
  151. class WorldBorder(models.Model):
  152. # Regular Django fields corresponding to the attributes in the
  153. # world borders shapefile.
  154. name = models.CharField(max_length=50)
  155. area = models.IntegerField()
  156. pop2005 = models.IntegerField('Population 2005')
  157. fips = models.CharField('FIPS Code', max_length=2, null=True)
  158. iso2 = models.CharField('2 Digit ISO', max_length=2)
  159. iso3 = models.CharField('3 Digit ISO', max_length=3)
  160. un = models.IntegerField('United Nations Code')
  161. region = models.IntegerField('Region Code')
  162. subregion = models.IntegerField('Sub-Region Code')
  163. lon = models.FloatField()
  164. lat = models.FloatField()
  165. # GeoDjango-specific: a geometry field (MultiPolygonField)
  166. mpoly = models.MultiPolygonField()
  167. # Returns the string representation of the model.
  168. def __str__(self):
  169. return self.name
  170. Note that the ``models`` module is imported from ``django.contrib.gis.db``.
  171. The default spatial reference system for geometry fields is WGS84 (meaning
  172. the `SRID`__ is 4326) -- in other words, the field coordinates are in
  173. longitude, latitude pairs in units of degrees. To use a different
  174. coordinate system, set the SRID of the geometry field with the ``srid``
  175. argument. Use an integer representing the coordinate system's EPSG code.
  176. __ https://en.wikipedia.org/wiki/SRID
  177. Run ``migrate``
  178. ---------------
  179. After defining your model, you need to sync it with the database. First,
  180. create a database migration:
  181. .. console::
  182. $ python manage.py makemigrations
  183. Migrations for 'world':
  184. world/migrations/0001_initial.py:
  185. - Create model WorldBorder
  186. Let's look at the SQL that will generate the table for the ``WorldBorder``
  187. model:
  188. .. console::
  189. $ python manage.py sqlmigrate world 0001
  190. This command should produce the following output:
  191. .. console::
  192. BEGIN;
  193. --
  194. -- Create model WorldBorder
  195. --
  196. CREATE TABLE "world_worldborder" (
  197. "id" serial NOT NULL PRIMARY KEY,
  198. "name" varchar(50) NOT NULL,
  199. "area" integer NOT NULL,
  200. "pop2005" integer NOT NULL,
  201. "fips" varchar(2) NOT NULL,
  202. "iso2" varchar(2) NOT NULL,
  203. "iso3" varchar(3) NOT NULL,
  204. "un" integer NOT NULL,
  205. "region" integer NOT NULL,
  206. "subregion" integer NOT NULL,
  207. "lon" double precision NOT NULL,
  208. "lat" double precision NOT NULL
  209. "mpoly" geometry(MULTIPOLYGON,4326) NOT NULL
  210. )
  211. ;
  212. CREATE INDEX "world_worldborder_mpoly_id" ON "world_worldborder" USING GIST ( "mpoly" );
  213. COMMIT;
  214. If this looks correct, run :djadmin:`migrate` to create this table in the
  215. database:
  216. .. console::
  217. $ python manage.py migrate
  218. Operations to perform:
  219. Apply all migrations: admin, auth, contenttypes, sessions, world
  220. Running migrations:
  221. ...
  222. Applying world.0001_initial... OK
  223. Importing Spatial Data
  224. ======================
  225. This section will show you how to import the world borders shapefile into the
  226. database via GeoDjango models using the :doc:`layermapping`.
  227. There are many different ways to import data into a spatial database --
  228. besides the tools included within GeoDjango, you may also use the following:
  229. * `ogr2ogr`_: A command-line utility included with GDAL that
  230. can import many vector data formats into PostGIS, MySQL, and Oracle databases.
  231. * `shp2pgsql`_: This utility included with PostGIS imports ESRI shapefiles into
  232. PostGIS.
  233. .. _ogr2ogr: https://gdal.org/programs/ogr2ogr.html
  234. .. _shp2pgsql: https://postgis.net/docs/using_postgis_dbmanagement.html#shp2pgsql_usage
  235. .. _gdalinterface:
  236. GDAL Interface
  237. --------------
  238. Earlier, you used ``ogrinfo`` to examine the contents of the world borders
  239. shapefile. GeoDjango also includes a Pythonic interface to GDAL's powerful OGR
  240. library that can work with all the vector data sources that OGR supports.
  241. First, invoke the Django shell:
  242. .. console::
  243. $ python manage.py shell
  244. If you downloaded the :ref:`worldborders` data earlier in the tutorial, then
  245. you can determine its path using Python's :class:`pathlib.Path`::
  246. >>> from pathlib import Path
  247. >>> import world
  248. >>> world_shp = Path(world.__file__).resolve().parent / 'data' / 'TM_WORLD_BORDERS-0.3.shp'
  249. Now, open the world borders shapefile using GeoDjango's
  250. :class:`~django.contrib.gis.gdal.DataSource` interface::
  251. >>> from django.contrib.gis.gdal import DataSource
  252. >>> ds = DataSource(world_shp)
  253. >>> print(ds)
  254. / ... /geodjango/world/data/TM_WORLD_BORDERS-0.3.shp (ESRI Shapefile)
  255. Data source objects can have different layers of geospatial features; however,
  256. shapefiles are only allowed to have one layer::
  257. >>> print(len(ds))
  258. 1
  259. >>> lyr = ds[0]
  260. >>> print(lyr)
  261. TM_WORLD_BORDERS-0.3
  262. You can see the layer's geometry type and how many features it contains::
  263. >>> print(lyr.geom_type)
  264. Polygon
  265. >>> print(len(lyr))
  266. 246
  267. .. note::
  268. Unfortunately, the shapefile data format does not allow for greater
  269. specificity with regards to geometry types. This shapefile, like
  270. many others, actually includes ``MultiPolygon`` geometries, not Polygons.
  271. It's important to use a more general field type in models: a
  272. GeoDjango ``MultiPolygonField`` will accept a ``Polygon`` geometry, but a
  273. ``PolygonField`` will not accept a ``MultiPolygon`` type geometry. This
  274. is why the ``WorldBorder`` model defined above uses a ``MultiPolygonField``.
  275. The :class:`~django.contrib.gis.gdal.Layer` may also have a spatial reference
  276. system associated with it. If it does, the ``srs`` attribute will return a
  277. :class:`~django.contrib.gis.gdal.SpatialReference` object::
  278. >>> srs = lyr.srs
  279. >>> print(srs)
  280. GEOGCS["GCS_WGS_1984",
  281. DATUM["WGS_1984",
  282. SPHEROID["WGS_1984",6378137.0,298.257223563]],
  283. PRIMEM["Greenwich",0.0],
  284. UNIT["Degree",0.0174532925199433]]
  285. >>> srs.proj # PROJ representation
  286. '+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs '
  287. This shapefile is in the popular WGS84 spatial reference
  288. system -- in other words, the data uses longitude, latitude pairs in
  289. units of degrees.
  290. In addition, shapefiles also support attribute fields that may contain
  291. additional data. Here are the fields on the World Borders layer:
  292. >>> print(lyr.fields)
  293. ['FIPS', 'ISO2', 'ISO3', 'UN', 'NAME', 'AREA', 'POP2005', 'REGION', 'SUBREGION', 'LON', 'LAT']
  294. The following code will let you examine the OGR types (e.g. integer or
  295. string) associated with each of the fields:
  296. >>> [fld.__name__ for fld in lyr.field_types]
  297. ['OFTString', 'OFTString', 'OFTString', 'OFTInteger', 'OFTString', 'OFTInteger', 'OFTInteger', 'OFTInteger', 'OFTInteger', 'OFTReal', 'OFTReal']
  298. You can iterate over each feature in the layer and extract information from both
  299. the feature's geometry (accessed via the ``geom`` attribute) as well as the
  300. feature's attribute fields (whose **values** are accessed via ``get()``
  301. method)::
  302. >>> for feat in lyr:
  303. ... print(feat.get('NAME'), feat.geom.num_points)
  304. ...
  305. Guernsey 18
  306. Jersey 26
  307. South Georgia South Sandwich Islands 338
  308. Taiwan 363
  309. :class:`~django.contrib.gis.gdal.Layer` objects may be sliced::
  310. >>> lyr[0:2]
  311. [<django.contrib.gis.gdal.feature.Feature object at 0x2f47690>, <django.contrib.gis.gdal.feature.Feature object at 0x2f47650>]
  312. And individual features may be retrieved by their feature ID::
  313. >>> feat = lyr[234]
  314. >>> print(feat.get('NAME'))
  315. San Marino
  316. Boundary geometries may be exported as WKT and GeoJSON::
  317. >>> geom = feat.geom
  318. >>> print(geom.wkt)
  319. POLYGON ((12.415798 43.957954,12.450554 ...
  320. >>> print(geom.json)
  321. { "type": "Polygon", "coordinates": [ [ [ 12.415798, 43.957954 ], [ 12.450554, 43.979721 ], ...
  322. ``LayerMapping``
  323. ----------------
  324. To import the data, use a LayerMapping in a Python script.
  325. Create a file called ``load.py`` inside the ``world`` application,
  326. with the following code::
  327. from pathlib import Path
  328. from django.contrib.gis.utils import LayerMapping
  329. from .models import WorldBorder
  330. world_mapping = {
  331. 'fips' : 'FIPS',
  332. 'iso2' : 'ISO2',
  333. 'iso3' : 'ISO3',
  334. 'un' : 'UN',
  335. 'name' : 'NAME',
  336. 'area' : 'AREA',
  337. 'pop2005' : 'POP2005',
  338. 'region' : 'REGION',
  339. 'subregion' : 'SUBREGION',
  340. 'lon' : 'LON',
  341. 'lat' : 'LAT',
  342. 'mpoly' : 'MULTIPOLYGON',
  343. }
  344. world_shp = Path(__file__).resolve().parent / 'data' / 'TM_WORLD_BORDERS-0.3.shp'
  345. def run(verbose=True):
  346. lm = LayerMapping(WorldBorder, world_shp, world_mapping, transform=False)
  347. lm.save(strict=True, verbose=verbose)
  348. A few notes about what's going on:
  349. * Each key in the ``world_mapping`` dictionary corresponds to a field in the
  350. ``WorldBorder`` model. The value is the name of the shapefile field
  351. that data will be loaded from.
  352. * The key ``mpoly`` for the geometry field is ``MULTIPOLYGON``, the
  353. geometry type GeoDjango will import the field as. Even simple polygons in
  354. the shapefile will automatically be converted into collections prior to
  355. insertion into the database.
  356. * The path to the shapefile is not absolute -- in other words, if you move the
  357. ``world`` application (with ``data`` subdirectory) to a different location,
  358. the script will still work.
  359. * The ``transform`` keyword is set to ``False`` because the data in the
  360. shapefile does not need to be converted -- it's already in WGS84 (SRID=4326).
  361. Afterwards, invoke the Django shell from the ``geodjango`` project directory:
  362. .. console::
  363. $ python manage.py shell
  364. Next, import the ``load`` module, call the ``run`` routine, and watch
  365. ``LayerMapping`` do the work::
  366. >>> from world import load
  367. >>> load.run()
  368. .. _ogrinspect-intro:
  369. Try ``ogrinspect``
  370. ------------------
  371. Now that you've seen how to define geographic models and import data with the
  372. :doc:`layermapping`, it's possible to further automate this process with
  373. use of the :djadmin:`ogrinspect` management command. The :djadmin:`ogrinspect`
  374. command introspects a GDAL-supported vector data source (e.g., a shapefile)
  375. and generates a model definition and ``LayerMapping`` dictionary automatically.
  376. The general usage of the command goes as follows:
  377. .. console::
  378. $ python manage.py ogrinspect [options] <data_source> <model_name> [options]
  379. ``data_source`` is the path to the GDAL-supported data source and
  380. ``model_name`` is the name to use for the model. Command-line options may
  381. be used to further define how the model is generated.
  382. For example, the following command nearly reproduces the ``WorldBorder`` model
  383. and mapping dictionary created above, automatically:
  384. .. console::
  385. $ python manage.py ogrinspect world/data/TM_WORLD_BORDERS-0.3.shp WorldBorder \
  386. --srid=4326 --mapping --multi
  387. A few notes about the command-line options given above:
  388. * The ``--srid=4326`` option sets the SRID for the geographic field.
  389. * The ``--mapping`` option tells ``ogrinspect`` to also generate a
  390. mapping dictionary for use with
  391. :class:`~django.contrib.gis.utils.LayerMapping`.
  392. * The ``--multi`` option is specified so that the geographic field is a
  393. :class:`~django.contrib.gis.db.models.MultiPolygonField` instead of just a
  394. :class:`~django.contrib.gis.db.models.PolygonField`.
  395. The command produces the following output, which may be copied
  396. directly into the ``models.py`` of a GeoDjango application::
  397. # This is an auto-generated Django model module created by ogrinspect.
  398. from django.contrib.gis.db import models
  399. class WorldBorder(models.Model):
  400. fips = models.CharField(max_length=2)
  401. iso2 = models.CharField(max_length=2)
  402. iso3 = models.CharField(max_length=3)
  403. un = models.IntegerField()
  404. name = models.CharField(max_length=50)
  405. area = models.IntegerField()
  406. pop2005 = models.IntegerField()
  407. region = models.IntegerField()
  408. subregion = models.IntegerField()
  409. lon = models.FloatField()
  410. lat = models.FloatField()
  411. geom = models.MultiPolygonField(srid=4326)
  412. # Auto-generated `LayerMapping` dictionary for WorldBorder model
  413. worldborders_mapping = {
  414. 'fips' : 'FIPS',
  415. 'iso2' : 'ISO2',
  416. 'iso3' : 'ISO3',
  417. 'un' : 'UN',
  418. 'name' : 'NAME',
  419. 'area' : 'AREA',
  420. 'pop2005' : 'POP2005',
  421. 'region' : 'REGION',
  422. 'subregion' : 'SUBREGION',
  423. 'lon' : 'LON',
  424. 'lat' : 'LAT',
  425. 'geom' : 'MULTIPOLYGON',
  426. }
  427. Spatial Queries
  428. ===============
  429. Spatial Lookups
  430. ---------------
  431. GeoDjango adds spatial lookups to the Django ORM. For example, you
  432. can find the country in the ``WorldBorder`` table that contains
  433. a particular point. First, fire up the management shell:
  434. .. console::
  435. $ python manage.py shell
  436. Now, define a point of interest [#]_::
  437. >>> pnt_wkt = 'POINT(-95.3385 29.7245)'
  438. The ``pnt_wkt`` string represents the point at -95.3385 degrees longitude,
  439. 29.7245 degrees latitude. The geometry is in a format known as
  440. Well Known Text (WKT), a standard issued by the Open Geospatial
  441. Consortium (OGC). [#]_ Import the ``WorldBorder`` model, and perform
  442. a ``contains`` lookup using the ``pnt_wkt`` as the parameter::
  443. >>> from world.models import WorldBorder
  444. >>> WorldBorder.objects.filter(mpoly__contains=pnt_wkt)
  445. <QuerySet [<WorldBorder: United States>]>
  446. Here, you retrieved a ``QuerySet`` with only one model: the border of the
  447. United States (exactly what you would expect).
  448. Similarly, you may also use a :doc:`GEOS geometry object <geos>`.
  449. Here, you can combine the ``intersects`` spatial lookup with the ``get``
  450. method to retrieve only the ``WorldBorder`` instance for San Marino instead
  451. of a queryset::
  452. >>> from django.contrib.gis.geos import Point
  453. >>> pnt = Point(12.4604, 43.9420)
  454. >>> WorldBorder.objects.get(mpoly__intersects=pnt)
  455. <WorldBorder: San Marino>
  456. The ``contains`` and ``intersects`` lookups are just a subset of the
  457. available queries -- the :doc:`db-api` documentation has more.
  458. .. _automatic-spatial-transformations:
  459. Automatic Spatial Transformations
  460. ---------------------------------
  461. When doing spatial queries, GeoDjango automatically transforms
  462. geometries if they're in a different coordinate system. In the following
  463. example, coordinates will be expressed in `EPSG SRID 32140`__,
  464. a coordinate system specific to south Texas **only** and in units of
  465. **meters**, not degrees::
  466. >>> from django.contrib.gis.geos import GEOSGeometry, Point
  467. >>> pnt = Point(954158.1, 4215137.1, srid=32140)
  468. Note that ``pnt`` may also be constructed with EWKT, an "extended" form of
  469. WKT that includes the SRID::
  470. >>> pnt = GEOSGeometry('SRID=32140;POINT(954158.1 4215137.1)')
  471. GeoDjango's ORM will automatically wrap geometry values
  472. in transformation SQL, allowing the developer to work at a higher level
  473. of abstraction::
  474. >>> qs = WorldBorder.objects.filter(mpoly__intersects=pnt)
  475. >>> print(qs.query) # Generating the SQL
  476. SELECT "world_worldborder"."id", "world_worldborder"."name", "world_worldborder"."area",
  477. "world_worldborder"."pop2005", "world_worldborder"."fips", "world_worldborder"."iso2",
  478. "world_worldborder"."iso3", "world_worldborder"."un", "world_worldborder"."region",
  479. "world_worldborder"."subregion", "world_worldborder"."lon", "world_worldborder"."lat",
  480. "world_worldborder"."mpoly" FROM "world_worldborder"
  481. WHERE ST_Intersects("world_worldborder"."mpoly", ST_Transform(%s, 4326))
  482. >>> qs # printing evaluates the queryset
  483. <QuerySet [<WorldBorder: United States>]>
  484. __ https://spatialreference.org/ref/epsg/32140/
  485. .. _gis-raw-sql:
  486. .. admonition:: Raw queries
  487. When using :doc:`raw queries </topics/db/sql>`, you must wrap your geometry
  488. fields so that the field value can be recognized by GEOS::
  489. from django.db import connection
  490. # or if you're querying a non-default database:
  491. from django.db import connections
  492. connection = connections['your_gis_db_alias']
  493. City.objects.raw('SELECT id, name, %s as point from myapp_city' % (connection.ops.select % 'point'))
  494. You should only use raw queries when you know exactly what you're doing.
  495. Lazy Geometries
  496. ---------------
  497. GeoDjango loads geometries in a standardized textual representation. When the
  498. geometry field is first accessed, GeoDjango creates a
  499. :class:`~django.contrib.gis.geos.GEOSGeometry` object, exposing powerful
  500. functionality, such as serialization properties for popular geospatial
  501. formats::
  502. >>> sm = WorldBorder.objects.get(name='San Marino')
  503. >>> sm.mpoly
  504. <MultiPolygon object at 0x24c6798>
  505. >>> sm.mpoly.wkt # WKT
  506. MULTIPOLYGON (((12.4157980000000006 43.9579540000000009, 12.4505540000000003 43.9797209999999978, ...
  507. >>> sm.mpoly.wkb # WKB (as Python binary buffer)
  508. <read-only buffer for 0x1fe2c70, size -1, offset 0 at 0x2564c40>
  509. >>> sm.mpoly.geojson # GeoJSON
  510. '{ "type": "MultiPolygon", "coordinates": [ [ [ [ 12.415798, 43.957954 ], [ 12.450554, 43.979721 ], ...
  511. This includes access to all of the advanced geometric operations provided by
  512. the GEOS library::
  513. >>> pnt = Point(12.4604, 43.9420)
  514. >>> sm.mpoly.contains(pnt)
  515. True
  516. >>> pnt.contains(sm.mpoly)
  517. False
  518. Geographic annotations
  519. ----------------------
  520. GeoDjango also offers a set of geographic annotations to compute distances and
  521. several other operations (intersection, difference, etc.). See the
  522. :doc:`functions` documentation.
  523. Putting your data on the map
  524. ============================
  525. Geographic Admin
  526. ----------------
  527. GeoDjango extends :doc:`Django's admin application </ref/contrib/admin/index>`
  528. with support for editing geometry fields.
  529. Basics
  530. ~~~~~~
  531. GeoDjango also supplements the Django admin by allowing users to create
  532. and modify geometries on a JavaScript slippy map (powered by `OpenLayers`_).
  533. Let's dive right in. Create a file called ``admin.py`` inside the
  534. ``world`` application with the following code::
  535. from django.contrib.gis import admin
  536. from .models import WorldBorder
  537. admin.site.register(WorldBorder, admin.GeoModelAdmin)
  538. Next, edit your ``urls.py`` in the ``geodjango`` application folder as follows::
  539. from django.contrib.gis import admin
  540. from django.urls import include, path
  541. urlpatterns = [
  542. path('admin/', admin.site.urls),
  543. ]
  544. Create an admin user:
  545. .. console::
  546. $ python manage.py createsuperuser
  547. Next, start up the Django development server:
  548. .. console::
  549. $ python manage.py runserver
  550. Finally, browse to ``http://localhost:8000/admin/``, and log in with the user
  551. you just created. Browse to any of the ``WorldBorder`` entries -- the borders
  552. may be edited by clicking on a polygon and dragging the vertices to the desired
  553. position.
  554. .. _OpenLayers: https://openlayers.org/
  555. .. _Open Street Map: https://www.openstreetmap.org/
  556. .. _Vector Map Level 0: https://earth-info.nga.mil/publications/vmap0.html
  557. .. _OSGeo: https://www.osgeo.org/
  558. .. _osmgeoadmin-intro:
  559. ``OSMGeoAdmin``
  560. ~~~~~~~~~~~~~~~
  561. With the :class:`~django.contrib.gis.admin.OSMGeoAdmin`, GeoDjango uses
  562. a `Open Street Map`_ layer in the admin.
  563. This provides more context (including street and thoroughfare details) than
  564. available with the :class:`~django.contrib.gis.admin.GeoModelAdmin`
  565. (which uses the `Vector Map Level 0`_ WMS dataset hosted at `OSGeo`_).
  566. The PROJ datum shifting files must be installed (see the :ref:`PROJ
  567. installation instructions <proj4>` for more details).
  568. If you meet this requirement, then substitute the ``OSMGeoAdmin`` option class
  569. in your ``admin.py`` file::
  570. admin.site.register(WorldBorder, admin.OSMGeoAdmin)
  571. .. rubric:: Footnotes
  572. .. [#] Special thanks to Bjørn Sandvik of `thematicmapping.org
  573. <https://thematicmapping.org/>`_ for providing and maintaining this
  574. dataset.
  575. .. [#] GeoDjango basic apps was written by Dane Springmeyer, Josh Livni, and
  576. Christopher Schmidt.
  577. .. [#] This point is the `University of Houston Law Center
  578. <https://www.law.uh.edu/>`_.
  579. .. [#] Open Geospatial Consortium, Inc., `OpenGIS Simple Feature Specification
  580. For SQL <https://www.opengeospatial.org/standards/sfs>`_.