├── .github ├── dependabot.yml └── workflows │ ├── automerge.yml │ ├── ci.yml │ ├── lint.yml │ └── pypi.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── boundaries ├── __init__.py ├── admin.py ├── base_views.py ├── kml.py ├── locale │ └── en │ │ └── LC_MESSAGES │ │ ├── django.mo │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── analyzeshapefiles.py │ │ ├── compute_intersections.py │ │ └── loadshapefiles.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20141129_1402.py │ ├── 0003_auto_20150528_1338.py │ ├── 0004_auto_20150921_1607.py │ ├── 0005_auto_20150925_0338.py │ ├── 0006_switch_to_django_jsonfield.py │ ├── 0007_auto_20180325_1421.py │ ├── 0008_alter_boundary_extent_alter_boundary_metadata_and_more.py │ ├── 0009_alter_boundaryset_slug.py │ └── __init__.py ├── models.py ├── static │ └── js │ │ └── jsonformatter.js ├── templates │ └── boundaries │ │ ├── apibrowser.html │ │ └── apidoc.html ├── tests │ ├── __init__.py │ ├── definitions │ │ ├── no_data_sources │ │ │ └── definition.py │ │ ├── no_features │ │ │ └── definition.py │ │ ├── polygons │ │ │ ├── definition.py │ │ │ ├── test_poly.dbf │ │ │ ├── test_poly.prj │ │ │ ├── test_poly.shp │ │ │ └── test_poly.shx │ │ └── srid │ │ │ └── definition.py │ ├── fixtures │ │ ├── bad.zip │ │ ├── bar_definition.py │ │ ├── empty.zip │ │ ├── empty │ │ │ ├── empty.txt │ │ │ └── empty.zip │ │ ├── flat.zip │ │ ├── foo.dbf │ │ ├── foo.prj │ │ ├── foo.shp │ │ ├── foo.shx │ │ ├── foo_definition.py │ │ ├── multiple.zip │ │ ├── multiple │ │ │ ├── bar.dbf │ │ │ ├── bar.prj │ │ │ ├── bar.shp │ │ │ ├── bar.shx │ │ │ ├── dir.zip │ │ │ │ ├── foo.dbf │ │ │ │ ├── foo.prj │ │ │ │ ├── foo.shp │ │ │ │ └── foo.shx │ │ │ ├── empty.zip │ │ │ ├── flat.zip │ │ │ ├── foo.dbf │ │ │ ├── foo.prj │ │ │ ├── foo.shp │ │ │ ├── foo.shx │ │ │ └── nested.zip │ │ ├── nested.zip │ │ └── nested │ │ │ └── dir.zip │ │ │ ├── foo.dbf │ │ │ ├── foo.prj │ │ │ ├── foo.shp │ │ │ └── foo.shx │ ├── test.py │ ├── test_boundary.py │ ├── test_boundary_detail.py │ ├── test_boundary_geo_detail.py │ ├── test_boundary_list.py │ ├── test_boundary_list_filter.py │ ├── test_boundary_list_geo.py │ ├── test_boundary_list_geo_filter.py │ ├── test_boundary_list_set.py │ ├── test_boundary_list_set_filter.py │ ├── test_boundary_list_set_geo.py │ ├── test_boundary_list_set_geo_filter.py │ ├── test_boundary_set.py │ ├── test_boundary_set_detail.py │ ├── test_boundary_set_list.py │ ├── test_boundary_set_list_filter.py │ ├── test_compute_intersections.py │ ├── test_definition.py │ ├── test_feature.py │ ├── test_geometry.py │ ├── test_loadshapefiles.py │ └── test_titlecase.py ├── titlecase.py ├── urls.py └── views.py ├── definition.example.py ├── pyproject.toml ├── runtests.py ├── settings.py └── setup.cfg /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *_cleaned_* 4 | /build 5 | /dist 6 | /.coverage 7 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/README.rst -------------------------------------------------------------------------------- /boundaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/__init__.py -------------------------------------------------------------------------------- /boundaries/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/admin.py -------------------------------------------------------------------------------- /boundaries/base_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/base_views.py -------------------------------------------------------------------------------- /boundaries/kml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/kml.py -------------------------------------------------------------------------------- /boundaries/locale/en/LC_MESSAGES/django.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/locale/en/LC_MESSAGES/django.mo -------------------------------------------------------------------------------- /boundaries/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /boundaries/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/management/commands/analyzeshapefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/management/commands/analyzeshapefiles.py -------------------------------------------------------------------------------- /boundaries/management/commands/compute_intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/management/commands/compute_intersections.py -------------------------------------------------------------------------------- /boundaries/management/commands/loadshapefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/management/commands/loadshapefiles.py -------------------------------------------------------------------------------- /boundaries/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0001_initial.py -------------------------------------------------------------------------------- /boundaries/migrations/0002_auto_20141129_1402.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0002_auto_20141129_1402.py -------------------------------------------------------------------------------- /boundaries/migrations/0003_auto_20150528_1338.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0003_auto_20150528_1338.py -------------------------------------------------------------------------------- /boundaries/migrations/0004_auto_20150921_1607.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0004_auto_20150921_1607.py -------------------------------------------------------------------------------- /boundaries/migrations/0005_auto_20150925_0338.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0005_auto_20150925_0338.py -------------------------------------------------------------------------------- /boundaries/migrations/0006_switch_to_django_jsonfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0006_switch_to_django_jsonfield.py -------------------------------------------------------------------------------- /boundaries/migrations/0007_auto_20180325_1421.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0007_auto_20180325_1421.py -------------------------------------------------------------------------------- /boundaries/migrations/0008_alter_boundary_extent_alter_boundary_metadata_and_more.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0008_alter_boundary_extent_alter_boundary_metadata_and_more.py -------------------------------------------------------------------------------- /boundaries/migrations/0009_alter_boundaryset_slug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/migrations/0009_alter_boundaryset_slug.py -------------------------------------------------------------------------------- /boundaries/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/models.py -------------------------------------------------------------------------------- /boundaries/static/js/jsonformatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/static/js/jsonformatter.js -------------------------------------------------------------------------------- /boundaries/templates/boundaries/apibrowser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/templates/boundaries/apibrowser.html -------------------------------------------------------------------------------- /boundaries/templates/boundaries/apidoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/templates/boundaries/apidoc.html -------------------------------------------------------------------------------- /boundaries/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/__init__.py -------------------------------------------------------------------------------- /boundaries/tests/definitions/no_data_sources/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/no_data_sources/definition.py -------------------------------------------------------------------------------- /boundaries/tests/definitions/no_features/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/no_features/definition.py -------------------------------------------------------------------------------- /boundaries/tests/definitions/polygons/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/polygons/definition.py -------------------------------------------------------------------------------- /boundaries/tests/definitions/polygons/test_poly.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/polygons/test_poly.dbf -------------------------------------------------------------------------------- /boundaries/tests/definitions/polygons/test_poly.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/polygons/test_poly.prj -------------------------------------------------------------------------------- /boundaries/tests/definitions/polygons/test_poly.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/polygons/test_poly.shp -------------------------------------------------------------------------------- /boundaries/tests/definitions/polygons/test_poly.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/polygons/test_poly.shx -------------------------------------------------------------------------------- /boundaries/tests/definitions/srid/definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/definitions/srid/definition.py -------------------------------------------------------------------------------- /boundaries/tests/fixtures/bad.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/tests/fixtures/bar_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/bar_definition.py -------------------------------------------------------------------------------- /boundaries/tests/fixtures/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/empty.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/empty/empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boundaries/tests/fixtures/empty/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/empty/empty.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/flat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/flat.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/foo.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/foo.dbf -------------------------------------------------------------------------------- /boundaries/tests/fixtures/foo.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/foo.prj -------------------------------------------------------------------------------- /boundaries/tests/fixtures/foo.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/foo.shp -------------------------------------------------------------------------------- /boundaries/tests/fixtures/foo.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/foo.shx -------------------------------------------------------------------------------- /boundaries/tests/fixtures/foo_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/foo_definition.py -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/bar.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/bar.dbf -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/bar.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/bar.prj -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/bar.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/bar.shp -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/bar.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/bar.shx -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/dir.zip/foo.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/dir.zip/foo.dbf -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/dir.zip/foo.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/dir.zip/foo.prj -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/dir.zip/foo.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/dir.zip/foo.shp -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/dir.zip/foo.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/dir.zip/foo.shx -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/empty.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/empty.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/flat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/flat.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/foo.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/foo.dbf -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/foo.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/foo.prj -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/foo.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/foo.shp -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/foo.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/foo.shx -------------------------------------------------------------------------------- /boundaries/tests/fixtures/multiple/nested.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/multiple/nested.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/nested.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/nested.zip -------------------------------------------------------------------------------- /boundaries/tests/fixtures/nested/dir.zip/foo.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/nested/dir.zip/foo.dbf -------------------------------------------------------------------------------- /boundaries/tests/fixtures/nested/dir.zip/foo.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/nested/dir.zip/foo.prj -------------------------------------------------------------------------------- /boundaries/tests/fixtures/nested/dir.zip/foo.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/nested/dir.zip/foo.shp -------------------------------------------------------------------------------- /boundaries/tests/fixtures/nested/dir.zip/foo.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/fixtures/nested/dir.zip/foo.shx -------------------------------------------------------------------------------- /boundaries/tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_detail.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_geo_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_geo_detail.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_filter.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_geo.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_geo_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_geo_filter.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_set.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_set_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_set_filter.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_set_geo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_set_geo.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_list_set_geo_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_list_set_geo_filter.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_set.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_set_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_set_detail.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_set_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_set_list.py -------------------------------------------------------------------------------- /boundaries/tests/test_boundary_set_list_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_boundary_set_list_filter.py -------------------------------------------------------------------------------- /boundaries/tests/test_compute_intersections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_compute_intersections.py -------------------------------------------------------------------------------- /boundaries/tests/test_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_definition.py -------------------------------------------------------------------------------- /boundaries/tests/test_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_feature.py -------------------------------------------------------------------------------- /boundaries/tests/test_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_geometry.py -------------------------------------------------------------------------------- /boundaries/tests/test_loadshapefiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_loadshapefiles.py -------------------------------------------------------------------------------- /boundaries/tests/test_titlecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/tests/test_titlecase.py -------------------------------------------------------------------------------- /boundaries/titlecase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/titlecase.py -------------------------------------------------------------------------------- /boundaries/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/urls.py -------------------------------------------------------------------------------- /boundaries/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/boundaries/views.py -------------------------------------------------------------------------------- /definition.example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/definition.example.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/runtests.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/settings.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opennorth/represent-boundaries/HEAD/setup.cfg --------------------------------------------------------------------------------