Duplicate project and categories
Download all observations Currently supported formats:
- KML
- GeoJSON
- XLXS
geokey-duplicate requires:
- Python version 2.7
- GeoKey version 1.6 or greater
Install the extension from PyPI:
pip install geokey-duplicateOr from cloned repository:
cd geokey-duplicate
pip install -e .Add the package to installed apps:
INSTALLED_APPS += (
...
'geokey_duplicate',
)Migrate the models into the database:
python manage.py migrate geokey_duplicateCopy static files:
python manage.py collectstaticYou're now ready to go!
Run tests:
python manage.py test geokey_duplicateCheck code coverage:
coverage run --source=geokey_duplicate manage.py test geokey_duplicate
coverage report -m --omit=*/tests/*,*/migrations/*