{"id":24309026,"url":"https://github.com/excites/geokey-dataimports","last_synced_at":"2026-05-15T23:02:19.748Z","repository":{"id":57433813,"uuid":"53962553","full_name":"ExCiteS/geokey-dataimports","owner":"ExCiteS","description":"Import data from various formats into GeoKey","archived":false,"fork":false,"pushed_at":"2022-02-22T20:19:16.000Z","size":126,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":10,"default_branch":"master","last_synced_at":"2025-08-28T01:56:42.867Z","etag":null,"topics":["csv","django","geojson","geokey","geokey-extension","kml"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ExCiteS.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-03-15T16:57:08.000Z","updated_at":"2021-11-18T19:07:36.000Z","dependencies_parsed_at":"2022-08-28T03:02:31.452Z","dependency_job_id":null,"html_url":"https://github.com/ExCiteS/geokey-dataimports","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/ExCiteS/geokey-dataimports","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-dataimports","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-dataimports/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-dataimports/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-dataimports/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ExCiteS","download_url":"https://codeload.github.com/ExCiteS/geokey-dataimports/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ExCiteS%2Fgeokey-dataimports/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33082717,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-15T20:25:35.270Z","status":"ssl_error","status_checked_at":"2026-05-15T20:25:34.732Z","response_time":103,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","django","geojson","geokey","geokey-extension","kml"],"created_at":"2025-01-17T05:12:22.785Z","updated_at":"2026-05-15T23:02:19.719Z","avatar_url":"https://github.com/ExCiteS.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. image:: https://img.shields.io/pypi/v/geokey-dataimports.svg\n    :alt: PyPI Package\n    :target: https://pypi.python.org/pypi/geokey-dataimports\n\n.. image:: https://img.shields.io/travis/ExCiteS/geokey-dataimports/master.svg\n    :alt: Travis CI Build Status\n    :target: https://travis-ci.org/ExCiteS/geokey-dataimports\n\n.. image:: https://img.shields.io/coveralls/ExCiteS/geokey-dataimports/master.svg\n    :alt: Coveralls Test Coverage\n    :target: https://coveralls.io/r/ExCiteS/geokey-dataimports\n\ngeokey-dataimports\n==================\n\nImport data from various formats (GeoJSON, KML, CSV) into GeoKey.\n\nInstall\n-------\n\ngeokey-dataimports requires:\n\n- Python version 2.7 or 3.6\n- GeoKey version 1.6 or greater\n\nInstall the geokey-dataimports from PyPI:\n\n.. code-block:: console\n\n    pip install geokey-dataimports\n\nOr from cloned repository:\n\n.. code-block:: console\n\n    cd geokey-dataimports\n    pip install -e .\n\nAdd the package to installed apps:\n\n.. code-block:: python\n\n    INSTALLED_APPS += (\n        ...\n        'geokey_dataimports',\n    )\n\nMigrate the models into the database:\n\n.. code-block:: console\n\n    python manage.py migrate geokey_dataimports\n\nCopy static files:\n\n.. code-block:: console\n\n    python manage.py collectstatic\n\nYou're now ready to go!\n\nRun within Docker container\n---------------------------\n\nIf you're cloning the repository and have GeoKey running within a Docker container, configure it like such:\n\n1. Make sure repositories are cloned next to each other, e.g. file structure is:\n\n.. code-block:: console\n\n    /MyProjects/geokey/\n    /MyProjects/geokey-dataimports/\n\n2. Modify *Dockerfile* (within \"geokey\" repository) so that it looks similar to:\n\n.. code-block:: console\n\n    ...\n    ADD /geokey /app\n    ADD /geokey-dataimports /extensions/geokey-dataimports\n    ...\n    RUN pip install -e /app\n    RUN pip install -e /extensions/geokey-dataimports\n\n3. Modify *docker-compose.yml* and add a new volume:\n\n.. code-block:: console\n\n    ...\n    volumes:\n      - ./geokey:/app/geokey\n      - ../geokey-dataimports/geokey_dataimports:/extensions/geokey-dataimports/geokey_dataimports\n    ...\n\nYou can also run migrations, make new ones, etc. using *geokey* container. For example, to run only geokey-dataimports tests:\n\n.. code-block:: console\n\n    docker-compose exec geokey python manage.py test geokey_dataimports\n\nUpdate\n------\n\nUpdate the geokey-dataimports from PyPI:\n\n.. code-block:: console\n\n    pip install -U geokey-dataimports\n\nMigrate the new models into the database:\n\n.. code-block:: console\n\n    python manage.py migrate geokey_dataimports\n\nCopy new static files:\n\n.. code-block:: console\n\n    python manage.py collectstatic\n\nTest\n----\n\nRun tests:\n\n.. code-block:: console\n\n    python manage.py test geokey_dataimports\n\nCheck code coverage:\n\n.. code-block:: console\n\n    coverage run --source=geokey_dataimports manage.py test geokey_dataimports\n    coverage report -m --omit=*/tests/*,*/migrations/*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexcites%2Fgeokey-dataimports","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fexcites%2Fgeokey-dataimports","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fexcites%2Fgeokey-dataimports/lists"}