[1.7.x] Fixed #23901 -- Documented how to use SpatiaLite with Homebrew.

Backport of cc870b8ef5 from master
This commit is contained in:
Kenial Lee 2014-11-25 19:48:36 -08:00 committed by Tim Graham
parent 87254532fb
commit 5f79da5814
1 changed files with 37 additions and 2 deletions

View File

@ -166,8 +166,13 @@ to build and install::
Mac OS X-specific instructions Mac OS X-specific instructions
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Mac OS X users should follow the instructions in the :ref:`kyngchaos` section, To install the SpatiaLite library and tools, Mac OS X users can choose between
as it is much easier than building from source. :ref:`kyngchaos` and `Homebrew`_.
KyngChaos
^^^^^^^^^
First, follow the instructions in the :ref:`kyngchaos` section.
When :ref:`create_spatialite_db`, the ``spatialite`` program is required. When :ref:`create_spatialite_db`, the ``spatialite`` program is required.
However, instead of attempting to compile the SpatiaLite tools from source, However, instead of attempting to compile the SpatiaLite tools from source,
@ -188,6 +193,23 @@ add the following to your ``settings.py``:
__ http://www.gaia-gis.it/spatialite-2.3.1/binaries.html __ http://www.gaia-gis.it/spatialite-2.3.1/binaries.html
Homebrew
^^^^^^^^
`Homebrew`_ handles all the SpatiaLite related packages on your behalf,
including SQLite3, SpatiaLite, PROJ, and GEOS. Install them like this::
$ brew update
$ brew install spatialite-tools
$ brew install gdal
Finally, for GeoDjango to be able to find the SpatiaLite library, add the
following to your ``settings.py``::
SPATIALITE_LIBRARY_PATH='/usr/local/lib/mod_spatialite.dylib'
.. _Homebrew: http://brew.sh/
.. _create_spatialite_db: .. _create_spatialite_db:
Creating a spatial database for SpatiaLite Creating a spatial database for SpatiaLite
@ -226,3 +248,16 @@ Then, use the ``spatialite`` command to initialize a spatial database::
inside your ``settings.py``. inside your ``settings.py``.
__ http://www.gaia-gis.it/spatialite-2.3.1/resources.html __ http://www.gaia-gis.it/spatialite-2.3.1/resources.html
.. note::
When running ``manage.py migrate`` with a SQLite (or SpatiaLite) database,
the database file will be automatically created if it doesn't exist. In
this case, if your models contain any geometry columns, you'll see this
error::
CreateSpatialIndex() error: "no such table: geometry_columns"
It's because the table creation queries are executed without spatial
metadata tables. To avoid this, make the database file before executing
``manage.py migrate`` as described above.