{"id":40467911,"url":"https://github.com/ebirders/ebird-dataset-explorer","last_synced_at":"2026-05-01T10:31:51.751Z","repository":{"id":264361431,"uuid":"884992650","full_name":"ebirders/ebird-dataset-explorer","owner":"ebirders","description":"A Django-based web site for browsing the eBIrd Basic Dataset","archived":false,"fork":false,"pushed_at":"2025-07-26T15:21:01.000Z","size":1162,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-21T01:09:52.278Z","etag":null,"topics":["django","ebird","ebird-basic-dataset","website"],"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/ebirders.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION.cff","codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-11-07T18:54:01.000Z","updated_at":"2025-08-03T10:59:21.000Z","dependencies_parsed_at":"2025-08-03T11:41:03.050Z","dependency_job_id":null,"html_url":"https://github.com/ebirders/ebird-dataset-explorer","commit_stats":null,"previous_names":["stuartmackay/ebird-dataset-browser","stuartmackay/ebird-dataset-explorer","ebirders/ebird-dataset-explorer"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/ebirders/ebird-dataset-explorer","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebirders%2Febird-dataset-explorer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebirders%2Febird-dataset-explorer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebirders%2Febird-dataset-explorer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebirders%2Febird-dataset-explorer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ebirders","download_url":"https://codeload.github.com/ebirders/ebird-dataset-explorer/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ebirders%2Febird-dataset-explorer/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32494270,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["django","ebird","ebird-basic-dataset","website"],"created_at":"2026-01-20T18:13:38.410Z","updated_at":"2026-05-01T10:31:51.694Z","avatar_url":"https://github.com/ebirders.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# eBird Dataset Explorer\n\neBird Dataset Explorer is a Django-based web site for browsing observations\nfrom the eBird Basic Dataset v1.16.\n\n## Overview\n\nThe Cornell Laboratory of Ornithology in Ithaca, New York runs the eBird database\nwhich collects observations of birds from all over the world, and publishes them\non (eBird.org)[https://ebird.org]. The data is also available via the\n[eBird Basic Dataset](https://science.ebird.org/en/use-ebird-data/download-ebird-data-products)\nwhich is intended for for analysis and modelling.\n\nThis project contains Django-based web site for browsing observations from the\neBird Basic Data. This project uses the [ebird-dataset-data](https://git.sr.ht/~smackay/ebird-dataset-data)\nwhich allows you to load the CSV based files published by eBird and load them\ninto a database.\n\n## Getting Started\n\nTo get started, you will need to [sign up](https://secure.birds.cornell.edu/identity/account/create) for an eBird account,\nthen [request access](https://ebird.org/data/download), which usually takes 7 days to be reviewed and approved.\n\nNext, get a copy of the repository:\n\n```shell\ngit clone https://git.sr.ht/~smackay/ebird-dataset-explorer\ncd ebird-dataset-explorer\n```\n\nCreate the virtual environment:\n\n```shell\nuv venv\n```\n\nActivate it:\n\n```shell\nsource .venv/bin/activate\n```\n\nInstall the requirements:\n\n```shell\nuv sync\n```\n\nCreate a copy of the .env.example file and set the URL to access the database:\n\n    cp .env.example .env\n\nFor example:\n\n```shell\nDATABASE_URL=postgres://dataset:passwordd@localhost:5432/dataset\n```\n\nThe site is developed and tested with PostgreSQL.\n\nRun the database migrations:\n\n    python manage.py migrate\n\nCreate an admin user:\n\n    python manage.py createsuperuser\n\nThere is a copy of the sample file from the eBird Basic Dataset in the\n/data/datasets/ directory. Use the load_dataset management command to\nload it into the database:\n\n```shell\npython manage.py load_dataset data/datasets/ebd.csv\n```\n\nIt's time to start the server:\n\n    python manage.py runserver\n\nFinally, visit the home page to view the observations:\n\n    http://localhost:8000/\n\n## Project Information\n\n* Issues: https://todo.sr.ht/~smackay/ebird-dataset-explorer\n* Repository: https://git.sr.ht/~smackay/ebird-dataset-explorer\n* Announcements: https://lists.sr.ht/~smackay/ebirders-announce\n* Discussions: https://lists.sr.ht/~smackay/ebirders-discuss\n* Development: https://lists.sr.ht/~smackay/ebirders-develop\n\nThe repository is also mirrored on Github:\n\n* Repository: https://github.com/StuartMacKay/ebird-dataset-explorer\n\n# License\n\neBird Dataset Browser is released under the terms of the [MIT](https://opensource.org/licenses/MIT) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febirders%2Febird-dataset-explorer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Febirders%2Febird-dataset-explorer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Febirders%2Febird-dataset-explorer/lists"}