django-rest-framework-gis
=========================
|Build Status| |Coverage Status| |Requirements Status| |PyPI version| |PyPI downloads| |Black|
Geographic add-ons for Django Rest Framework - `Mailing
List <http://bit.ly/1M4sLTp>`__.
Install last stable version from pypi
-------------------------------------
.. code-block:: bash
pip install djangorestframework-gis
Install development version
---------------------------
.. code-block:: bash
pip install https://github.com/openwisp/django-rest-framework-gis/tarball/master
Setup
-----
Add ``rest_framework_gis`` in ``settings.INSTALLED_APPS``, after ``rest_framework``:
.. code-block:: python
INSTALLED_APPS = [
# ...
'rest_framework',
'rest_framework_gis',
# ...
]
Compatibility with DRF, Django and Python
-----------------------------------------
======================== ============================ ==================== ==================================
DRF-gis version DRF version Django version Python version
**1.1.x** **3.12** up to **3.15** **3.2, 4.2 to 5.1** **3.8** to **3.12**
**1.0.x** **3.10** up to **3.13** **2.2 to 4.0** **3.6** to **3.9**
**0.18.x** **3.10** up to **3.13** **2.2 to 4.0** **3.6** to **3.9**
**0.17.x** **3.10** up to **3.12** **2.2 to 3.1** **3.6** to **3.8**
**0.16.x** **3.10** **2.2 to 3.1** **3.6** to **3.8**
**0.15.x** **3.10** **1.11, 2.2 to 3.0** **3.5** to **3.8**
**0.14.x** **3.3** to **3.9** **1.11** to **2.1** **3.4** to **3.7**
**0.13.x** **3.3** to **3.8** **1.11** to **2.0** **2.7** to **3.6**
**0.12.x** **3.1** to **3.7** **1.11** to **2.0** **2.7** to **3.6**
**0.11.x** **3.1** to **3.6** **1.7** to **1.11** **2.7** to **3.6**
**0.10.x** **3.1** to **3.3** **1.7** to **1.9** **2.7** to **3.5**
**0.9.6** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.5**
**0.9.5** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.4**
**0.9.4** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.4**
**0.9.3** **3.1** **1.5** to **1.8** **2.6** to **3.4**
**0.9.2** **3.1** **1.5** to **1.8** **2.6** to **3.4**
**0.9.1** **3.1** **1.5** to **1.8** **2.6** to **3.4**
**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**
**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**
**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**
**0.8.2** **3.0.4** to **3.1.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**
**0.8.1** **3.0.4** to **3.1.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**
**0.8** **3.0.4** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**
**0.7** **2.4.3** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**
**0.6** **2.4.3** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**
**0.5** from **2.3.14** to **2.4.2** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**
**0.4** from **2.3.14** to **2.4.2** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**
**0.3** from **2.3.14** to **2.4.2** **1.5**, **1.6** **2.6**, **2.7**
**0.2** from **2.2.2** to **2.3.13** **1.5**, **1.6** **2.6**, **2.7**
======================== ============================ ==================== ==================================
Fields
------
GeometryField
~~~~~~~~~~~~~
Provides a ``GeometryField``, which is a subclass of Django Rest Framework
(from now on **DRF**) ``WritableField``. This field handles GeoDjango
geometry fields, providing custom ``to_native`` and ``from_native``
methods for GeoJSON input/output.
This field takes three optional arguments:
- ``precision``: Passes coordinates through Python's builtin ``round()`` function (`docs
<https://docs.python.org/3/library/functions.html#round>`_), rounding values to
the provided level of precision. E.g. A Point with lat/lng of
``[51.0486, -114.0708]`` passed through a ``GeometryField(precision=2)``
would return a Point with a lat/lng of ``[51.05, -114.07]``.
- ``remove_duplicates``: Remove sequential duplicate coordinates from line and
polygon geometries. This is particularly useful when used with the ``precision``
argument, as the likelihood of duplicate coordinates increase as precision of
coordinates are reduced.
- ``auto_bbox``: If ``True``, the GeoJSON object will include
a `bounding box <https://datatracker.ietf.org/doc/html/rfc7946#section-5>`_,
which is the smallest possible rectangle enclosing the geometry.
**Note:** While ``precision`` and ``remove_duplicates`` are designed to reduce the
byte size of the API response, they will also increase the processing time
required to render the response. This will likely be negligible for small GeoJSON
responses but may become an issue for large responses.
**New in 0.9.3:** there is no need to define this field explicitly in your serializer,
it's mapped automatically during initialization in ``rest_framework_gis.apps.AppConfig.ready()``.
GeometrySerializerMethodField
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Provides a ``GeometrySerializerMethodField``, which is a subclass of DRF
``SerializerMethodField`` and handles values which are computed with a serializer
method and are used as a ``geo_field``. `See example below <https://github.com/openwisp/django-rest-framework-gis#using-geometryserializermethodfield-as-geo_field>`__.
Serializers
-----------
GeoModelSerializer (DEPRECATED)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
**Deprecated, will be removed in 1.0**: Using this serializer is not needed anymore since 0.9.3, if you add
``rest_framework_gis`` in ``settings.INSTALLED_APPS`` the serialization will work out of the box with DRF.
Refer `Issue #156 <https://github.com/openwisp/django-rest-framework-gis#using-geometryserializermethodfield-as-geo_field>`__.
Provides a ``GeoModelSerializer``, which is a subclass of DRF
``ModelSerializer``. This serializer updates the field\_mapping
dictionary to include field mapping of GeoDjango geometry fields to the
above ``GeometryField``.
For example, the following model:
.. code-block:: python
class Location(models.Model):
"""
A model which holds information about a particular location
"""
address = models.CharField(max_length=255)
city = models.CharField(max_length=100)
state = models.CharField(max_length=100)
point = models.PointField()
By default, the DRF ModelSerializer **ver < 0.9.3** will output:
.. code-block:: javascript
{
"id": 1,
"address": "742 Evergreen Terrace",
"city": "Springfield",
"state": "Oregon",
"point": "POINT(-123.0208 44.0464)"
}
In contrast, the ``GeoModelSerializer`` will output:
.. code-block:: javascript
{
"id": 1,
"address": "742 Evergreen Terrace",
"city": "Springfield",
"state": "Oregon",
"point": {
"type": "Point",
"coordinates": [-123.0208, 44.0464],
}
}
**Note:** For ``ver>=0.9.3``: The DRF model serializer will give the same output as above, if;
- ``rest_framework_gis`` is set in ``settings.INSTALLED_APPS`` or
- the field in the serializer is set explicitly as ``GeometryField``.
GeoFeatureModelSerializer
~~~~~~~~~~~~~~~~~~~~~~~~~
``GeoFeatureModelSerializer`` is a subclass of ``rest_framework.ModelSerializer``
which will output data in a format that is **GeoJSON** compatible. Using
the above example, the ``GeoFeatureModelSerializer`` will output:
.. code-block:: javascript
{
"id": 1,
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-123.0208, 44.0464],
},
"properties": {
"address": "742 Evergreen Terrace",
"city": "Springfield",
"state": "Oregon"
}
}
If you are serializing an object list, ``GeoFeatureModelSerializer``
will create a ``FeatureCollection``:
.. code-block:: javascript
{
"type": "FeatureCollection",
"features": [
{
"id": 1
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-123.0208, 44.0464],
},
"properties": {
"address": "742 Evergreen Terrace",
"city": "Springfield",
"state": "Oregon",
}
}
{
"id": 2,
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [-123.0208, 44.0489],
},
"properties": {
"address": "744 Evergreen Terrace",
"city": "Springfield",
"state": "Oregon"
}
}
}
Specifying the geometry field: "geo_field"
##########################################
``GeoFeatureModelSerializer`` requires you to define a ``geo_field``
to be serialized as the "geometry". For example:
.. code-block:: python
from rest_framework_gis.serializers import GeoFeatureModelSerializer
class LocationSerializer(GeoFeatureModelSerializer):
""" A class to serialize locations as GeoJSON compatible data """
class Meta:
model = Location
geo_field = "point"
# you can also explicitly declare which fields you want to include
# as with a ModelSerializer.
fields = ('id', 'address', 'city', 'state')
If your model is geometry-less, you can set ``geo_field`` to ``None``
and a null geometry will be produced.
Using GeometrySerializerMethodField as "geo_field"
##################################################
``geo_field`` may also be an instance of ``GeometrySerializerMethodField``.
In this case you can compute its value during serialization. For example:
.. code-block:: python
from django.contrib.gis.geos import Point
from rest_framework_gis.serializers import GeoFeatureModelSerializer, GeometrySerializerMethodField
class LocationSerializer(GeoFeatureModelSerializer):
""" A class to serialize locations as GeoJSON compatible data """
# a field which contains a geometry value and can be used as geo_field
other_point = GeometrySerializerMethodField()
def get_other_point(self, obj):
return Point(obj.point.lat / 2, obj.point.lon / 2)
class Meta:
model = Location
geo_field = 'other_point'
Serializer for ``geo_field`` may also return ``None`` value, which will translate to ``null`` value for geojson ``geometry`` field.
Specifying the ID: "id_field"
#############################
The primary key of the model (usually the "id" attribute) is
automatically used as the ``id`` field of each
`GeoJSON Feature Object <https://tools.ietf.org/html/draft-butler-geojson#section-2.2>`_.
The default behaviour follows the `GeoJSON RFC <https://tools.ietf.org/html/draft-butler-geojson>`_,
but it can be disabled by setting ``id_field`` to ``False``:
.. code-block:: python
from rest_framework_gis.serializers import GeoFeatureModelSerializer
class LocationSerializer(GeoFeatureModelSerializer):
class Meta:
model = Location
geo_field = "point"
id_field = False
fields = ('id', 'address', 'city', 'state')
The ``id_field`` can also be set to use some other unique field in your model, eg: ``slug``:
.. code-block:: python
from rest_framework_gis.serializers import GeoFeatureModelSerializer
class LocationSerializer(GeoFeatureModelSerializer):
class Meta:
model = Location
geo_field = 'point'
id_field = 'slug'
fields = ('slug', 'address', 'city', 'state')
Bounding Box: "auto_bbox" and "bbox_geo_field"
##############################################
The GeoJSON specification allows a feature to contain a
`boundingbox of a feature <http://geojson.org/geojson-spec.html#geojson-objects>`__.
``GeoFeatureModelSerializer`` allows two different ways to fill this property. The first
is using the ``geo_field`` to calculate the bounding box of a feature. This only allows
read access for a REST client and can be achieved using ``auto_bbox``. Example:
.. code-block:: python
from rest_framework_gis.serializers import GeoFeatureModelSerializer
class LocationSerializer(GeoFeatureModelSerializer):
class Meta:
model = Location
geo_field = 'geometry'
auto_bbox = True
The second approach uses the ``bbox_geo_field`` to specify an additional
``GeometryField`` of the model which will be used to calculate the bounding box. This allows
boundingboxes differ from the exact extent of a features geometry. Additionally this
enables read and write access for the REST client. Bounding boxes send from the client will
be saved as Polygons. Example:
.. code-block:: python
from rest_framework_gis.serializers import GeoFeatureModelSerializer
class LocationSerializer(GeoFeatureModelSerializer):
class Meta:
model = BoxedLocation
geo_field = 'geometry'
bbox_geo_field = 'bbox_geometry'
Custom GeoJSON properties source
################################
In GeoJSON each feature can have a ``properties`` member containing the
attributes of the feature. By default this field is filled with the
attributes from your Django model, excluding the id, geometry and bounding
box fields. It's possible to override this behaviour and implement a custom
source for the ``properties`` member.
The following example shows how to use a PostgreSQL HStore field as a source for
the ``properties`` member:
.. code-block:: python
# models.py
class Link(models.Model):
"""
Metadata is stored in a PostgreSQL HStore field, which allows us to
store arbitrary key-value pairs with a link record.
"""
metadata = HStoreField(blank=True, null=True, default=dict)
geo = models.LineStringField()
objects = models.GeoManager()
# serializers.py
class NetworkGeoSerializer(GeoFeatureModelSerializer):
class Meta:
model = models.Link
geo_field = 'geo'
auto_bbox = True
def get_properties(self, instance, fields):
# This is a PostgreSQL HStore field, which django maps to a dict
return instance.metadata
def unformat_geojson(self, feature):
attrs = {
self.Meta.geo_field: feature["geometry"],
"metadata": feature["properties"]
}
if self.Meta.bbox_geo_field and "bbox" in feature:
attrs[self.Meta.bbox_geo_field] = Polygon.from_bbox(feature["bbox"])
return attrs
When the serializer renders GeoJSON, it calls the method
``get_properties`` for each object in the database. This function
should return a dictionary containing the attributes for the feature. In the
case of a HStore field, this function is easily implemented.
The reverse is also required: mapping a GeoJSON formatted structure to
attributes of your model. This task is done by ``unformat_geojson``. It should
return a dictionary with your model attributes as keys, and the corresponding
values retrieved from the GeoJSON feature data.
Pagination
----------
We provide a ``GeoJsonPagination`` class.
GeoJsonPagination
~~~~~~~~~~~~~~~~~
Based on ``rest_framework.pagination.PageNumberPagination``.
Code example:
.. code-block:: python
from rest_framework_gis.pagination import GeoJsonPagination
# --- other omitted imports --- #
class GeojsonLocationList(generics.ListCreateAPIView):
# -- other omitted view attributes --- #
pagination_class = GeoJsonPagination
Example result response (cut to one element only instead of 10):
.. code-block:: javascript
{
"type": "FeatureCollection",
"count": 25,
"next": "http://localhost:8000/geojson/?page=2",
"previous": null,
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
42.0,
50.0
]
},
"properties": {
"name": "test"
}
}
]
}
Filters
-------
**note**: this feature has been tested up to django-filter 1.0.
We provide a ``GeometryFilter`` field as well as a ``GeoFilterSet``
for usage with ``django_filter``. You simply provide, in the query
string, one of the textual types supported by ``GEOSGeometry``. By
default, this includes WKT, HEXEWKB, WKB (in a buffer), and GeoJSON.
GeometryFilter
~~~~~~~~~~~~~~
.. code-block:: python
from rest_framework_gis.filterset import GeoFilterSet
from rest_framework_gis.filters import GeometryFilter
from django_filters import filters
class RegionFilter(GeoFilterSet):
slug = filters.CharFilter(name='slug', lookup_expr='istartswith')
contains_geom = GeometryFilter(name='geom', lookup_expr='contains')
class Meta:
model = Region
We can then filter in the URL, using GeoJSON, and we will perform a
``__contains`` geometry lookup, e.g.
``/region/?contains_geom={ "type": "Point", "coordinates": [ -123.26436996459961, 44.564178042345375 ] }``.
GeoFilterSet
~~~~~~~~~~~~
The ``GeoFilterSet`` provides a ``django_filter`` compatible
``FilterSet`` that will automatically create ``GeometryFilters`` for
``GeometryFields``.
InBBoxFilter
~~~~~~~~~~~~
Provides a ``InBBoxFilter``, which is a subclass of DRF
``BaseFilterBackend``. Filters a queryset to only those instances within
a certain bounding box.
``views.py:``
.. code-block:: python
from rest_framework_gis.filters import InBBoxFilter
class LocationList(ListAPIView):
queryset = models.Location.objects.all()
serializer_class = serializers.LocationSerializer
bbox_filter_field = 'point'
filter_backends = (InBBoxFilter,)
bbox_filter_include_overlapping = True # Optional
We can then filter in the URL, using Bounding Box format (min Lon, min
Lat, max Lon, max Lat), and we can search for instances within the
bounding box, e.g.:
``/location/?in_bbox=-90,29,-89,35``.
By default, InBBoxFilter will only return those instances entirely
within the stated bounding box. To include those instances which overlap
the bounding box, include ``bbox_filter_include_overlapping = True``
in your view.
Note that if you are using other filters, you'll want to include your
other filter backend in your view. For example:
``filter_backends = (InBBoxFilter, DjangoFilterBackend,)``
TMSTileFilter
~~~~~~~~~~~~~
Provides a ``TMSTileFilter``, which is a subclass of ``InBBoxFilter``.
Filters a queryset to only those instances within a bounding box defined
by a `TMS tile <http://wiki.openstreetmap.org/wiki/TMS>`__ address.
``views.py:``
.. code-block:: python
from rest_framework_gis.filters import TMSTileFilter
class LocationList(ListAPIView):
queryset = models.Location.objects.all()
serializer_class = serializers.LocationSerializer
bbox_filter_field = 'point'
filter_backends = (TMSTileFilter,)
bbox_filter_include_overlapping = True # Optional
We can then filter in the URL, using TMS tile addresses in the zoom/x/y format,
eg:.
``/location/?tile=8/100/200``
which is equivalent to filtering on the bbox (-39.37500,-71.07406,-37.96875,-70.61261).
For more information on configuration options see InBBoxFilter.
Note that the tile address start in the upper left, not the lower left origin used by some
implementations.
DistanceToPointFilter
~~~~~~~~~~~~~~~~~~~~~
Provides a ``DistanceToPointFilter``, which is a subclass of DRF
``BaseFilterBackend``. Filters a queryset to only those instances within
a certain distance of a given point.
``views.py:``
.. code-block:: python
from rest_framework_gis.filters import DistanceToPointFilter
class LocationList(ListAPIView):
queryset = models.Location.objects.all()
serializer_class = serializers.LocationSerializer
distance_filter_field = 'geometry'
filter_backends = (DistanceToPointFilter,)
We can then filter in the URL, using a distance and a point in (lon, lat) format. The
distance can be given in meters or in degrees.
eg:.
``/location/?dist=4000&point=-122.4862,37.7694&format=json``
which is equivalent to filtering within 4000 meters of the point (-122.4862, 37.7694).
By default, DistanceToPointFilter will pass the 'distance' in the URL directly to the database for the search.
The effect depends on the srid of the database in use. If geo data is indexed in meters (srid 3875, aka 900913), a
distance in meters can be passed in directly without conversion. For lat-lon databases such as srid 4326,
which is indexed in degrees, the 'distance' will be interpreted as degrees. Set the flag, 'distance_filter_convert_meters'
to 'True' in order to convert an input distance in meters to degrees. This conversion is approximate, and the errors
at latitudes > 60 degrees are > 25%.
DistanceToPointOrderingFilter
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Provides a ``DistanceToPointOrderingFilter``, **available on Django >= 3.0**, which is a subclass of ``DistanceToPointFilter``.
Orders a queryset by distance to a given point, from the nearest to the most distant point.
``views.py:``
.. code-block:: python
from rest_framework_gis.filters import DistanceToPointOrderingFilter
class LocationList(ListAPIView):
queryset = models.Location.objects.all()
serializer_class = serializers.LocationSerializer
distance_ordering_filter_field = 'geometry'
filter_backends = (DistanceToPointOrderingFilter,)
We can then order the results by passing a point in (lon, lat) format in the URL.
eg:.
``/location/?point=-122.4862,37.7694&format=json``
will order the results by the distance to the point (-122.4862, 37.7694).
We can also reverse the order of the results by passing ``order=desc``:
``/location/?point=-122.4862,37.7694&order=desc&format=json``
Schema Generation
-----------------
Note: Schema generation support is available only for DRF >= 3.12.
Simplest Approach would be, change ``DEFAULT_SCHEMA_CLASS`` to ``rest_framework_gis.schema.GeoFeatureAutoSchema``:
.. code-block:: python
REST_FRAMEWORK = {
...
'DEFAULT_SCHEMA_CLASS': 'rest_framework_gis.schema.GeoFeatureAutoSchema',
...
}
If you do not want to change default schema generator class:
- You can pass this class as an argument to ``get_schema_view`` function `[Ref] <https://www.django-rest-framework.org/api-guide/schemas/#generating-a-dynamic-schema-with-schemaview>`__.
- You can pass this class as an argument to the ``generateschema`` command `[Ref] <https://www.django-rest-framework.org/api-guide/schemas/#generating-a-static-schema-with-the-generateschema-management-command>`__.
Running the tests
-----------------
Required setup
==============
You need one of the `Spatial Database servers supported by
GeoDjango <https://docs.djangoproject.com/en/dev/ref/contrib/gis/db-api/#module-django.contrib.gis.db.backends>`__,
and create a database for the tests.
The following can be used with PostgreSQL:
.. code-block:: bash
createdb django_restframework_gis
psql -U postgres -d django_restframework_gis -c "CREATE EXTENSION postgis"
You might need to tweak the DB settings according to your DB
configuration. You can copy the file ``local_settings.example.py`` to
``local_settings.py`` and change the ``DATABASES`` and/or
``INSTALLED_APPS`` directives there.
This should allow you to run the tests already.
For reference, the following steps will setup a development environment for
contributing to the project:
- create a spatial database named "django\_restframework\_gis"
- create ``local_settings.py``, eg:
``cp local_settings.example.py local_settings.py``
- tweak the ``DATABASES`` configuration directive according to your DB
settings
- uncomment ``INSTALLED_APPS``
- run ``python manage.py syncdb``
- run ``python manage.py collectstatic``
- run ``python manage.py runserver``
Using tox
=========
The recommended way to run the tests is by using
`tox <https://tox.readthedocs.io/en/latest/>`__, which can be installed using
`pip install tox`.
You can use ``tox -l`` to list the available environments, and then e.g. use
the following to run all tests with Python 3.6 and Django 1.11:
.. code-block:: bash
tox -e py36-django111
By default Django's test runner is used, but there is a variation of tox's
envlist to use pytest (using the ``-pytest`` suffix).
You can pass optional arguments to the test runner like this:
.. code-block:: bash
tox -e py36-django111-pytest -- -k test_foo
Running tests manually
======================
Please refer to the ``tox.ini`` file for reference/help in case you want to run
tests manually / without tox.
To run tests in docker use
.. code-block:: bash
docker-compose build
docker-compose run --rm test
Running QA-checks
=================
Install the test requirements:
.. code-block:: shell
pip install -r requirements-test.txt
Reformat the code according to
`our coding style conventions with <https://openwisp.io/docs/developer/contributing.html#coding-style-conventions>`_:
.. code-block:: shell
openwisp-qa-format
Run the QA checks by using
.. code-block:: shell
./run-qa-checks
In docker testing, QA checks are executed automatically.
Contributing
------------
1. Join the `Django REST Framework GIS Mailing
List <https://groups.google.com/forum/#!forum/django-rest-framework-gis>`__
and announce your intentions
2. Follow the `PEP8 Style Guide for Python
Code <http://www.python.org/dev/peps/pep-0008/>`__
3. Fork this repo
4. Write code
5. Write tests for your code
6. Ensure all tests pass
7. Ensure test coverage is not under 90%
8. Document your changes
9. Send pull request
.. |Build Status| image:: https://github.com/openwisp/django-rest-framework-gis/actions/workflows/ci.yml/badge.svg
:target: https://github.com/openwisp/django-rest-framework-gis/actions/workflows/ci.yml
.. |Coverage Status| image:: https://coveralls.io/repos/openwisp/django-rest-framework-gis/badge.svg
:target: https://coveralls.io/r/openwisp/django-rest-framework-gis
.. |Requirements Status| image:: https://img.shields.io/librariesio/release/github/openwisp/django-rest-framework-gis
:target: https://libraries.io/github/openwisp/django-rest-framework-gis#repository_dependencies
:alt: Dependency monitoring
.. |PyPI version| image:: https://badge.fury.io/py/djangorestframework-gis.svg
:target: http://badge.fury.io/py/djangorestframework-gis
.. |PyPI downloads| image:: https://pepy.tech/badge/djangorestframework-gis/month
:target: https://pepy.tech/project/djangorestframework-gis
.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg
:target: https://pypi.org/project/black/
Raw data
{
"_id": null,
"home_page": "https://github.com/openwisp/django-rest-framework-gis",
"name": "djangorestframework-gis",
"maintainer": null,
"docs_url": null,
"requires_python": null,
"maintainer_email": null,
"keywords": "django, rest-framework, gis, geojson",
"author": "Douglas Meehan",
"author_email": "django-rest-framework-gis@googlegroups.com",
"download_url": "https://files.pythonhosted.org/packages/96/56/87d5921170e05af629d04f733c6991fdfb9f8fde210beef9d63f3ae087c4/djangorestframework_gis-1.1.tar.gz",
"platform": "Platform Indipendent",
"description": "django-rest-framework-gis\n=========================\n\n|Build Status| |Coverage Status| |Requirements Status| |PyPI version| |PyPI downloads| |Black|\n\nGeographic add-ons for Django Rest Framework - `Mailing\nList <http://bit.ly/1M4sLTp>`__.\n\nInstall last stable version from pypi\n-------------------------------------\n\n.. code-block:: bash\n\n pip install djangorestframework-gis\n\nInstall development version\n---------------------------\n\n.. code-block:: bash\n\n pip install https://github.com/openwisp/django-rest-framework-gis/tarball/master\n\nSetup\n-----\n\nAdd ``rest_framework_gis`` in ``settings.INSTALLED_APPS``, after ``rest_framework``:\n\n.. code-block:: python\n\n INSTALLED_APPS = [\n # ...\n 'rest_framework',\n 'rest_framework_gis',\n # ...\n ]\n\nCompatibility with DRF, Django and Python\n-----------------------------------------\n\n======================== ============================ ==================== ==================================\nDRF-gis version DRF version Django version Python version\n**1.1.x** **3.12** up to **3.15** **3.2, 4.2 to 5.1** **3.8** to **3.12**\n**1.0.x** **3.10** up to **3.13** **2.2 to 4.0** **3.6** to **3.9**\n**0.18.x** **3.10** up to **3.13** **2.2 to 4.0** **3.6** to **3.9**\n**0.17.x** **3.10** up to **3.12** **2.2 to 3.1** **3.6** to **3.8**\n**0.16.x** **3.10** **2.2 to 3.1** **3.6** to **3.8**\n**0.15.x** **3.10** **1.11, 2.2 to 3.0** **3.5** to **3.8**\n**0.14.x** **3.3** to **3.9** **1.11** to **2.1** **3.4** to **3.7**\n**0.13.x** **3.3** to **3.8** **1.11** to **2.0** **2.7** to **3.6**\n**0.12.x** **3.1** to **3.7** **1.11** to **2.0** **2.7** to **3.6**\n**0.11.x** **3.1** to **3.6** **1.7** to **1.11** **2.7** to **3.6**\n**0.10.x** **3.1** to **3.3** **1.7** to **1.9** **2.7** to **3.5**\n**0.9.6** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.5**\n**0.9.5** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.4**\n**0.9.4** **3.1** to **3.2** **1.5** to **1.8** **2.6** to **3.4**\n**0.9.3** **3.1** **1.5** to **1.8** **2.6** to **3.4**\n**0.9.2** **3.1** **1.5** to **1.8** **2.6** to **3.4**\n**0.9.1** **3.1** **1.5** to **1.8** **2.6** to **3.4**\n**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**\n**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**\n**0.9** **3.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**\n**0.8.2** **3.0.4** to **3.1.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**\n**0.8.1** **3.0.4** to **3.1.1** **1.5** to **1.8** **2.6**, **2.7**, **3.3**, **3.4**\n**0.8** **3.0.4** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**\n**0.7** **2.4.3** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**\n**0.6** **2.4.3** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**\n**0.5** from **2.3.14** to **2.4.2** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**\n**0.4** from **2.3.14** to **2.4.2** **1.5** to **1.7** **2.6**, **2.7**, **3.3**, **3.4**\n**0.3** from **2.3.14** to **2.4.2** **1.5**, **1.6** **2.6**, **2.7**\n**0.2** from **2.2.2** to **2.3.13** **1.5**, **1.6** **2.6**, **2.7**\n======================== ============================ ==================== ==================================\n\nFields\n------\n\nGeometryField\n~~~~~~~~~~~~~\n\nProvides a ``GeometryField``, which is a subclass of Django Rest Framework\n(from now on **DRF**) ``WritableField``. This field handles GeoDjango\ngeometry fields, providing custom ``to_native`` and ``from_native``\nmethods for GeoJSON input/output.\n\nThis field takes three optional arguments:\n\n- ``precision``: Passes coordinates through Python's builtin ``round()`` function (`docs\n <https://docs.python.org/3/library/functions.html#round>`_), rounding values to\n the provided level of precision. E.g. A Point with lat/lng of\n ``[51.0486, -114.0708]`` passed through a ``GeometryField(precision=2)``\n would return a Point with a lat/lng of ``[51.05, -114.07]``.\n- ``remove_duplicates``: Remove sequential duplicate coordinates from line and\n polygon geometries. This is particularly useful when used with the ``precision``\n argument, as the likelihood of duplicate coordinates increase as precision of\n coordinates are reduced.\n- ``auto_bbox``: If ``True``, the GeoJSON object will include\n a `bounding box <https://datatracker.ietf.org/doc/html/rfc7946#section-5>`_,\n which is the smallest possible rectangle enclosing the geometry.\n\n**Note:** While ``precision`` and ``remove_duplicates`` are designed to reduce the\nbyte size of the API response, they will also increase the processing time\nrequired to render the response. This will likely be negligible for small GeoJSON\nresponses but may become an issue for large responses.\n\n**New in 0.9.3:** there is no need to define this field explicitly in your serializer,\nit's mapped automatically during initialization in ``rest_framework_gis.apps.AppConfig.ready()``.\n\nGeometrySerializerMethodField\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nProvides a ``GeometrySerializerMethodField``, which is a subclass of DRF\n``SerializerMethodField`` and handles values which are computed with a serializer\nmethod and are used as a ``geo_field``. `See example below <https://github.com/openwisp/django-rest-framework-gis#using-geometryserializermethodfield-as-geo_field>`__.\n\nSerializers\n-----------\n\nGeoModelSerializer (DEPRECATED)\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\n**Deprecated, will be removed in 1.0**: Using this serializer is not needed anymore since 0.9.3, if you add\n``rest_framework_gis`` in ``settings.INSTALLED_APPS`` the serialization will work out of the box with DRF.\nRefer `Issue #156 <https://github.com/openwisp/django-rest-framework-gis#using-geometryserializermethodfield-as-geo_field>`__.\n\nProvides a ``GeoModelSerializer``, which is a subclass of DRF\n``ModelSerializer``. This serializer updates the field\\_mapping\ndictionary to include field mapping of GeoDjango geometry fields to the\nabove ``GeometryField``.\n\nFor example, the following model:\n\n.. code-block:: python\n\n class Location(models.Model):\n \"\"\"\n A model which holds information about a particular location\n \"\"\"\n address = models.CharField(max_length=255)\n city = models.CharField(max_length=100)\n state = models.CharField(max_length=100)\n point = models.PointField()\n\nBy default, the DRF ModelSerializer **ver < 0.9.3** will output:\n\n.. code-block:: javascript\n\n {\n \"id\": 1,\n \"address\": \"742 Evergreen Terrace\",\n \"city\": \"Springfield\",\n \"state\": \"Oregon\",\n \"point\": \"POINT(-123.0208 44.0464)\"\n }\n\nIn contrast, the ``GeoModelSerializer`` will output:\n\n.. code-block:: javascript\n\n {\n \"id\": 1,\n \"address\": \"742 Evergreen Terrace\",\n \"city\": \"Springfield\",\n \"state\": \"Oregon\",\n \"point\": {\n \"type\": \"Point\",\n \"coordinates\": [-123.0208, 44.0464],\n }\n }\n\n**Note:** For ``ver>=0.9.3``: The DRF model serializer will give the same output as above, if;\n\n- ``rest_framework_gis`` is set in ``settings.INSTALLED_APPS`` or\n- the field in the serializer is set explicitly as ``GeometryField``.\n\nGeoFeatureModelSerializer\n~~~~~~~~~~~~~~~~~~~~~~~~~\n\n``GeoFeatureModelSerializer`` is a subclass of ``rest_framework.ModelSerializer``\nwhich will output data in a format that is **GeoJSON** compatible. Using\nthe above example, the ``GeoFeatureModelSerializer`` will output:\n\n.. code-block:: javascript\n\n {\n \"id\": 1,\n \"type\": \"Feature\",\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [-123.0208, 44.0464],\n },\n \"properties\": {\n \"address\": \"742 Evergreen Terrace\",\n \"city\": \"Springfield\",\n \"state\": \"Oregon\"\n }\n }\n\nIf you are serializing an object list, ``GeoFeatureModelSerializer``\nwill create a ``FeatureCollection``:\n\n.. code-block:: javascript\n\n {\n \"type\": \"FeatureCollection\",\n \"features\": [\n {\n \"id\": 1\n \"type\": \"Feature\",\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [-123.0208, 44.0464],\n },\n \"properties\": {\n \"address\": \"742 Evergreen Terrace\",\n \"city\": \"Springfield\",\n \"state\": \"Oregon\",\n }\n }\n {\n \"id\": 2,\n \"type\": \"Feature\",\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [-123.0208, 44.0489],\n },\n \"properties\": {\n \"address\": \"744 Evergreen Terrace\",\n \"city\": \"Springfield\",\n \"state\": \"Oregon\"\n }\n }\n }\n\nSpecifying the geometry field: \"geo_field\"\n##########################################\n\n``GeoFeatureModelSerializer`` requires you to define a ``geo_field``\nto be serialized as the \"geometry\". For example:\n\n.. code-block:: python\n\n from rest_framework_gis.serializers import GeoFeatureModelSerializer\n\n class LocationSerializer(GeoFeatureModelSerializer):\n \"\"\" A class to serialize locations as GeoJSON compatible data \"\"\"\n\n class Meta:\n model = Location\n geo_field = \"point\"\n\n # you can also explicitly declare which fields you want to include\n # as with a ModelSerializer.\n fields = ('id', 'address', 'city', 'state')\n\nIf your model is geometry-less, you can set ``geo_field`` to ``None``\nand a null geometry will be produced.\n\nUsing GeometrySerializerMethodField as \"geo_field\"\n##################################################\n\n``geo_field`` may also be an instance of ``GeometrySerializerMethodField``.\nIn this case you can compute its value during serialization. For example:\n\n.. code-block:: python\n\n from django.contrib.gis.geos import Point\n from rest_framework_gis.serializers import GeoFeatureModelSerializer, GeometrySerializerMethodField\n\n class LocationSerializer(GeoFeatureModelSerializer):\n \"\"\" A class to serialize locations as GeoJSON compatible data \"\"\"\n\n # a field which contains a geometry value and can be used as geo_field\n other_point = GeometrySerializerMethodField()\n\n def get_other_point(self, obj):\n return Point(obj.point.lat / 2, obj.point.lon / 2)\n\n class Meta:\n model = Location\n geo_field = 'other_point'\n\nSerializer for ``geo_field`` may also return ``None`` value, which will translate to ``null`` value for geojson ``geometry`` field.\n\nSpecifying the ID: \"id_field\"\n#############################\n\nThe primary key of the model (usually the \"id\" attribute) is\nautomatically used as the ``id`` field of each\n`GeoJSON Feature Object <https://tools.ietf.org/html/draft-butler-geojson#section-2.2>`_.\n\nThe default behaviour follows the `GeoJSON RFC <https://tools.ietf.org/html/draft-butler-geojson>`_,\nbut it can be disabled by setting ``id_field`` to ``False``:\n\n.. code-block:: python\n\n from rest_framework_gis.serializers import GeoFeatureModelSerializer\n\n class LocationSerializer(GeoFeatureModelSerializer):\n\n class Meta:\n model = Location\n geo_field = \"point\"\n id_field = False\n fields = ('id', 'address', 'city', 'state')\n\nThe ``id_field`` can also be set to use some other unique field in your model, eg: ``slug``:\n\n.. code-block:: python\n\n from rest_framework_gis.serializers import GeoFeatureModelSerializer\n\n class LocationSerializer(GeoFeatureModelSerializer):\n\n class Meta:\n model = Location\n geo_field = 'point'\n id_field = 'slug'\n fields = ('slug', 'address', 'city', 'state')\n\nBounding Box: \"auto_bbox\" and \"bbox_geo_field\"\n##############################################\n\nThe GeoJSON specification allows a feature to contain a\n`boundingbox of a feature <http://geojson.org/geojson-spec.html#geojson-objects>`__.\n``GeoFeatureModelSerializer`` allows two different ways to fill this property. The first\nis using the ``geo_field`` to calculate the bounding box of a feature. This only allows\nread access for a REST client and can be achieved using ``auto_bbox``. Example:\n\n.. code-block:: python\n\n from rest_framework_gis.serializers import GeoFeatureModelSerializer\n\n class LocationSerializer(GeoFeatureModelSerializer):\n class Meta:\n model = Location\n geo_field = 'geometry'\n auto_bbox = True\n\n\nThe second approach uses the ``bbox_geo_field`` to specify an additional\n``GeometryField`` of the model which will be used to calculate the bounding box. This allows\nboundingboxes differ from the exact extent of a features geometry. Additionally this\nenables read and write access for the REST client. Bounding boxes send from the client will\nbe saved as Polygons. Example:\n\n.. code-block:: python\n\n from rest_framework_gis.serializers import GeoFeatureModelSerializer\n\n class LocationSerializer(GeoFeatureModelSerializer):\n\n class Meta:\n model = BoxedLocation\n geo_field = 'geometry'\n bbox_geo_field = 'bbox_geometry'\n\n\nCustom GeoJSON properties source\n################################\n\nIn GeoJSON each feature can have a ``properties`` member containing the\nattributes of the feature. By default this field is filled with the\nattributes from your Django model, excluding the id, geometry and bounding\nbox fields. It's possible to override this behaviour and implement a custom\nsource for the ``properties`` member.\n\nThe following example shows how to use a PostgreSQL HStore field as a source for\nthe ``properties`` member:\n\n.. code-block:: python\n\n # models.py\n class Link(models.Model):\n \"\"\"\n Metadata is stored in a PostgreSQL HStore field, which allows us to\n store arbitrary key-value pairs with a link record.\n \"\"\"\n metadata = HStoreField(blank=True, null=True, default=dict)\n geo = models.LineStringField()\n objects = models.GeoManager()\n\n # serializers.py\n class NetworkGeoSerializer(GeoFeatureModelSerializer):\n class Meta:\n model = models.Link\n geo_field = 'geo'\n auto_bbox = True\n\n def get_properties(self, instance, fields):\n # This is a PostgreSQL HStore field, which django maps to a dict\n return instance.metadata\n\n def unformat_geojson(self, feature):\n attrs = {\n self.Meta.geo_field: feature[\"geometry\"],\n \"metadata\": feature[\"properties\"]\n }\n\n if self.Meta.bbox_geo_field and \"bbox\" in feature:\n attrs[self.Meta.bbox_geo_field] = Polygon.from_bbox(feature[\"bbox\"])\n\n return attrs\n\nWhen the serializer renders GeoJSON, it calls the method\n``get_properties`` for each object in the database. This function\nshould return a dictionary containing the attributes for the feature. In the\ncase of a HStore field, this function is easily implemented.\n\nThe reverse is also required: mapping a GeoJSON formatted structure to\nattributes of your model. This task is done by ``unformat_geojson``. It should\nreturn a dictionary with your model attributes as keys, and the corresponding\nvalues retrieved from the GeoJSON feature data.\n\nPagination\n----------\n\nWe provide a ``GeoJsonPagination`` class.\n\nGeoJsonPagination\n~~~~~~~~~~~~~~~~~\n\nBased on ``rest_framework.pagination.PageNumberPagination``.\n\nCode example:\n\n.. code-block:: python\n\n from rest_framework_gis.pagination import GeoJsonPagination\n # --- other omitted imports --- #\n\n class GeojsonLocationList(generics.ListCreateAPIView):\n # -- other omitted view attributes --- #\n pagination_class = GeoJsonPagination\n\nExample result response (cut to one element only instead of 10):\n\n.. code-block:: javascript\n\n {\n \"type\": \"FeatureCollection\",\n \"count\": 25,\n \"next\": \"http://localhost:8000/geojson/?page=2\",\n \"previous\": null,\n \"features\": [\n {\n \"type\": \"Feature\",\n \"geometry\": {\n \"type\": \"Point\",\n \"coordinates\": [\n 42.0,\n 50.0\n ]\n },\n \"properties\": {\n \"name\": \"test\"\n }\n }\n ]\n }\n\n\nFilters\n-------\n\n**note**: this feature has been tested up to django-filter 1.0.\n\nWe provide a ``GeometryFilter`` field as well as a ``GeoFilterSet``\nfor usage with ``django_filter``. You simply provide, in the query\nstring, one of the textual types supported by ``GEOSGeometry``. By\ndefault, this includes WKT, HEXEWKB, WKB (in a buffer), and GeoJSON.\n\nGeometryFilter\n~~~~~~~~~~~~~~\n\n.. code-block:: python\n\n from rest_framework_gis.filterset import GeoFilterSet\n from rest_framework_gis.filters import GeometryFilter\n from django_filters import filters\n\n class RegionFilter(GeoFilterSet):\n slug = filters.CharFilter(name='slug', lookup_expr='istartswith')\n contains_geom = GeometryFilter(name='geom', lookup_expr='contains')\n\n class Meta:\n model = Region\n\nWe can then filter in the URL, using GeoJSON, and we will perform a\n``__contains`` geometry lookup, e.g.\n``/region/?contains_geom={ \"type\": \"Point\", \"coordinates\": [ -123.26436996459961, 44.564178042345375 ] }``.\n\nGeoFilterSet\n~~~~~~~~~~~~\n\nThe ``GeoFilterSet`` provides a ``django_filter`` compatible\n``FilterSet`` that will automatically create ``GeometryFilters`` for\n``GeometryFields``.\n\nInBBoxFilter\n~~~~~~~~~~~~\n\nProvides a ``InBBoxFilter``, which is a subclass of DRF\n``BaseFilterBackend``. Filters a queryset to only those instances within\na certain bounding box.\n\n\n``views.py:``\n\n.. code-block:: python\n\n from rest_framework_gis.filters import InBBoxFilter\n\n class LocationList(ListAPIView):\n\n queryset = models.Location.objects.all()\n serializer_class = serializers.LocationSerializer\n bbox_filter_field = 'point'\n filter_backends = (InBBoxFilter,)\n bbox_filter_include_overlapping = True # Optional\n\nWe can then filter in the URL, using Bounding Box format (min Lon, min\nLat, max Lon, max Lat), and we can search for instances within the\nbounding box, e.g.:\n``/location/?in_bbox=-90,29,-89,35``.\n\nBy default, InBBoxFilter will only return those instances entirely\nwithin the stated bounding box. To include those instances which overlap\nthe bounding box, include ``bbox_filter_include_overlapping = True``\nin your view.\n\nNote that if you are using other filters, you'll want to include your\nother filter backend in your view. For example:\n\n``filter_backends = (InBBoxFilter, DjangoFilterBackend,)``\n\nTMSTileFilter\n~~~~~~~~~~~~~\n\nProvides a ``TMSTileFilter``, which is a subclass of ``InBBoxFilter``.\nFilters a queryset to only those instances within a bounding box defined\nby a `TMS tile <http://wiki.openstreetmap.org/wiki/TMS>`__ address.\n\n``views.py:``\n\n.. code-block:: python\n\n from rest_framework_gis.filters import TMSTileFilter\n\n class LocationList(ListAPIView):\n\n queryset = models.Location.objects.all()\n serializer_class = serializers.LocationSerializer\n bbox_filter_field = 'point'\n filter_backends = (TMSTileFilter,)\n bbox_filter_include_overlapping = True # Optional\n\nWe can then filter in the URL, using TMS tile addresses in the zoom/x/y format,\neg:.\n``/location/?tile=8/100/200``\nwhich is equivalent to filtering on the bbox (-39.37500,-71.07406,-37.96875,-70.61261).\n\nFor more information on configuration options see InBBoxFilter.\n\nNote that the tile address start in the upper left, not the lower left origin used by some\nimplementations.\n\nDistanceToPointFilter\n~~~~~~~~~~~~~~~~~~~~~\n\nProvides a ``DistanceToPointFilter``, which is a subclass of DRF\n``BaseFilterBackend``. Filters a queryset to only those instances within\na certain distance of a given point.\n\n``views.py:``\n\n.. code-block:: python\n\n from rest_framework_gis.filters import DistanceToPointFilter\n\n class LocationList(ListAPIView):\n\n queryset = models.Location.objects.all()\n serializer_class = serializers.LocationSerializer\n distance_filter_field = 'geometry'\n filter_backends = (DistanceToPointFilter,)\n\nWe can then filter in the URL, using a distance and a point in (lon, lat) format. The\ndistance can be given in meters or in degrees.\n\neg:.\n``/location/?dist=4000&point=-122.4862,37.7694&format=json``\nwhich is equivalent to filtering within 4000 meters of the point (-122.4862, 37.7694).\n\nBy default, DistanceToPointFilter will pass the 'distance' in the URL directly to the database for the search.\nThe effect depends on the srid of the database in use. If geo data is indexed in meters (srid 3875, aka 900913), a\ndistance in meters can be passed in directly without conversion. For lat-lon databases such as srid 4326,\nwhich is indexed in degrees, the 'distance' will be interpreted as degrees. Set the flag, 'distance_filter_convert_meters'\nto 'True' in order to convert an input distance in meters to degrees. This conversion is approximate, and the errors\nat latitudes > 60 degrees are > 25%.\n\nDistanceToPointOrderingFilter\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nProvides a ``DistanceToPointOrderingFilter``, **available on Django >= 3.0**, which is a subclass of ``DistanceToPointFilter``.\nOrders a queryset by distance to a given point, from the nearest to the most distant point.\n\n``views.py:``\n\n.. code-block:: python\n\n from rest_framework_gis.filters import DistanceToPointOrderingFilter\n\n class LocationList(ListAPIView):\n\n queryset = models.Location.objects.all()\n serializer_class = serializers.LocationSerializer\n distance_ordering_filter_field = 'geometry'\n filter_backends = (DistanceToPointOrderingFilter,)\n\nWe can then order the results by passing a point in (lon, lat) format in the URL.\n\neg:.\n``/location/?point=-122.4862,37.7694&format=json``\nwill order the results by the distance to the point (-122.4862, 37.7694).\n\nWe can also reverse the order of the results by passing ``order=desc``:\n``/location/?point=-122.4862,37.7694&order=desc&format=json``\n\nSchema Generation\n-----------------\n\nNote: Schema generation support is available only for DRF >= 3.12.\n\nSimplest Approach would be, change ``DEFAULT_SCHEMA_CLASS`` to ``rest_framework_gis.schema.GeoFeatureAutoSchema``:\n\n.. code-block:: python\n\n REST_FRAMEWORK = {\n ...\n 'DEFAULT_SCHEMA_CLASS': 'rest_framework_gis.schema.GeoFeatureAutoSchema',\n ...\n }\n\nIf you do not want to change default schema generator class:\n\n- You can pass this class as an argument to ``get_schema_view`` function `[Ref] <https://www.django-rest-framework.org/api-guide/schemas/#generating-a-dynamic-schema-with-schemaview>`__.\n- You can pass this class as an argument to the ``generateschema`` command `[Ref] <https://www.django-rest-framework.org/api-guide/schemas/#generating-a-static-schema-with-the-generateschema-management-command>`__.\n\nRunning the tests\n-----------------\n\nRequired setup\n==============\n\nYou need one of the `Spatial Database servers supported by\nGeoDjango <https://docs.djangoproject.com/en/dev/ref/contrib/gis/db-api/#module-django.contrib.gis.db.backends>`__,\nand create a database for the tests.\n\nThe following can be used with PostgreSQL:\n\n.. code-block:: bash\n\n createdb django_restframework_gis\n psql -U postgres -d django_restframework_gis -c \"CREATE EXTENSION postgis\"\n\nYou might need to tweak the DB settings according to your DB\nconfiguration. You can copy the file ``local_settings.example.py`` to\n``local_settings.py`` and change the ``DATABASES`` and/or\n``INSTALLED_APPS`` directives there.\n\nThis should allow you to run the tests already.\n\nFor reference, the following steps will setup a development environment for\ncontributing to the project:\n\n- create a spatial database named \"django\\_restframework\\_gis\"\n- create ``local_settings.py``, eg:\n ``cp local_settings.example.py local_settings.py``\n- tweak the ``DATABASES`` configuration directive according to your DB\n settings\n- uncomment ``INSTALLED_APPS``\n- run ``python manage.py syncdb``\n- run ``python manage.py collectstatic``\n- run ``python manage.py runserver``\n\nUsing tox\n=========\n\nThe recommended way to run the tests is by using\n`tox <https://tox.readthedocs.io/en/latest/>`__, which can be installed using\n`pip install tox`.\n\nYou can use ``tox -l`` to list the available environments, and then e.g. use\nthe following to run all tests with Python 3.6 and Django 1.11:\n\n.. code-block:: bash\n\n tox -e py36-django111\n\nBy default Django's test runner is used, but there is a variation of tox's\nenvlist to use pytest (using the ``-pytest`` suffix).\n\nYou can pass optional arguments to the test runner like this:\n\n.. code-block:: bash\n\n tox -e py36-django111-pytest -- -k test_foo\n\nRunning tests manually\n======================\n\nPlease refer to the ``tox.ini`` file for reference/help in case you want to run\ntests manually / without tox.\n\nTo run tests in docker use\n\n.. code-block:: bash\n\n docker-compose build\n docker-compose run --rm test\n\nRunning QA-checks\n=================\n\nInstall the test requirements:\n\n.. code-block:: shell\n\n pip install -r requirements-test.txt\n\nReformat the code according to\n`our coding style conventions with <https://openwisp.io/docs/developer/contributing.html#coding-style-conventions>`_:\n\n.. code-block:: shell\n\n openwisp-qa-format\n\nRun the QA checks by using\n\n.. code-block:: shell\n\n ./run-qa-checks\n\nIn docker testing, QA checks are executed automatically.\n\nContributing\n------------\n\n1. Join the `Django REST Framework GIS Mailing\n List <https://groups.google.com/forum/#!forum/django-rest-framework-gis>`__\n and announce your intentions\n2. Follow the `PEP8 Style Guide for Python\n Code <http://www.python.org/dev/peps/pep-0008/>`__\n3. Fork this repo\n4. Write code\n5. Write tests for your code\n6. Ensure all tests pass\n7. Ensure test coverage is not under 90%\n8. Document your changes\n9. Send pull request\n\n.. |Build Status| image:: https://github.com/openwisp/django-rest-framework-gis/actions/workflows/ci.yml/badge.svg\n :target: https://github.com/openwisp/django-rest-framework-gis/actions/workflows/ci.yml\n.. |Coverage Status| image:: https://coveralls.io/repos/openwisp/django-rest-framework-gis/badge.svg\n :target: https://coveralls.io/r/openwisp/django-rest-framework-gis\n.. |Requirements Status| image:: https://img.shields.io/librariesio/release/github/openwisp/django-rest-framework-gis\n :target: https://libraries.io/github/openwisp/django-rest-framework-gis#repository_dependencies\n :alt: Dependency monitoring\n.. |PyPI version| image:: https://badge.fury.io/py/djangorestframework-gis.svg\n :target: http://badge.fury.io/py/djangorestframework-gis\n.. |PyPI downloads| image:: https://pepy.tech/badge/djangorestframework-gis/month\n :target: https://pepy.tech/project/djangorestframework-gis\n.. |Black| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n :target: https://pypi.org/project/black/\n",
"bugtrack_url": null,
"license": "BSD",
"summary": "Geographic add-ons for Django Rest Framework",
"version": "1.1",
"project_urls": {
"Bug Reports": "https://github.com/openwisp/django-rest-framework-gis/issues",
"Code Coverage": "https://coveralls.io/github/openwisp/django-rest-framework-gis",
"Continuous Integration": "https://github.com/openwisp/django-rest-framework-gis/actions?query=workflow%3A%22Django+Rest+Framework+Gis+CI+Build%22",
"Download": "https://github.com/openwisp/django-rest-framework-gis/releases",
"Homepage": "https://github.com/openwisp/django-rest-framework-gis",
"Mailing List": "https://groups.google.com/forum/#!forum/django-rest-framework-gis",
"Source Code": "https://github.com/openwisp/django-rest-framework-gis"
},
"split_keywords": [
"django",
" rest-framework",
" gis",
" geojson"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "f4c409f9d899e827fd7fbed450962c9b6c67d501c06f7e29e0abee30c13e53d0",
"md5": "1a27fc9c1b2112b885ff32b84228f3bd",
"sha256": "fd8631c2c10208df5f05ee297ce333aaa9a794acd654420207f72e8f9acd59ea"
},
"downloads": -1,
"filename": "djangorestframework_gis-1.1-py2.py3-none-any.whl",
"has_sig": false,
"md5_digest": "1a27fc9c1b2112b885ff32b84228f3bd",
"packagetype": "bdist_wheel",
"python_version": "py2.py3",
"requires_python": null,
"size": 21836,
"upload_time": "2024-08-17T16:07:20",
"upload_time_iso_8601": "2024-08-17T16:07:20.876365Z",
"url": "https://files.pythonhosted.org/packages/f4/c4/09f9d899e827fd7fbed450962c9b6c67d501c06f7e29e0abee30c13e53d0/djangorestframework_gis-1.1-py2.py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "965687d5921170e05af629d04f733c6991fdfb9f8fde210beef9d63f3ae087c4",
"md5": "4f6b1ff0853841f5d0841c1118350601",
"sha256": "84b915503a59263ed9473ecde34b19260c3e9c5c8ebb3aea8d91a67fd39f7215"
},
"downloads": -1,
"filename": "djangorestframework_gis-1.1.tar.gz",
"has_sig": false,
"md5_digest": "4f6b1ff0853841f5d0841c1118350601",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 49563,
"upload_time": "2024-08-17T16:07:22",
"upload_time_iso_8601": "2024-08-17T16:07:22.804328Z",
"url": "https://files.pythonhosted.org/packages/96/56/87d5921170e05af629d04f733c6991fdfb9f8fde210beef9d63f3ae087c4/djangorestframework_gis-1.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-08-17 16:07:22",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "openwisp",
"github_project": "django-rest-framework-gis",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "djangorestframework-gis"
}