├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── layers.rst ├── maps.rst ├── toc.rst └── views.rst ├── settings.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── models.py ├── test_code_sanity.py └── test_polygon_view.py └── wms ├── __init__.py ├── layers.py ├── maps.py ├── models.py ├── symbols.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/layers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/layers.rst -------------------------------------------------------------------------------- /docs/maps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/maps.rst -------------------------------------------------------------------------------- /docs/toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/toc.rst -------------------------------------------------------------------------------- /docs/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/docs/views.rst -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_code_sanity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/tests/test_code_sanity.py -------------------------------------------------------------------------------- /tests/test_polygon_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/tests/test_polygon_view.py -------------------------------------------------------------------------------- /wms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /wms/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/wms/layers.py -------------------------------------------------------------------------------- /wms/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/wms/maps.py -------------------------------------------------------------------------------- /wms/models.py: -------------------------------------------------------------------------------- 1 | # Keeping manage.py happy 2 | -------------------------------------------------------------------------------- /wms/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/wms/symbols.py -------------------------------------------------------------------------------- /wms/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geodesign/django-wms/HEAD/wms/views.py --------------------------------------------------------------------------------