{"id":13590124,"url":"https://github.com/DroneDB/DroneDB","last_synced_at":"2025-04-08T12:32:48.216Z","repository":{"id":38842451,"uuid":"199881976","full_name":"DroneDB/DroneDB","owner":"DroneDB","description":"Free and open source software for aerial data storage.","archived":false,"fork":false,"pushed_at":"2024-11-29T17:09:01.000Z","size":3292,"stargazers_count":220,"open_issues_count":40,"forks_count":27,"subscribers_count":13,"default_branch":"master","last_synced_at":"2024-11-29T18:20:27.791Z","etag":null,"topics":["database","drones","hacktoberfest","mapping","uav","uav-images"],"latest_commit_sha":null,"homepage":"https://dronedb.app","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DroneDB.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-07-31T15:23:38.000Z","updated_at":"2024-11-07T10:13:35.000Z","dependencies_parsed_at":"2024-01-03T04:48:16.269Z","dependency_job_id":"2d101381-e403-4f59-ae6b-43940ac8f72d","html_url":"https://github.com/DroneDB/DroneDB","commit_stats":{"total_commits":1148,"total_committers":6,"mean_commits":"191.33333333333334","dds":0.3344947735191638,"last_synced_commit":"849e92fa94dc7cf65eb756ecf3824f0fe9dbb797"},"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroneDB%2FDroneDB","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroneDB%2FDroneDB/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroneDB%2FDroneDB/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DroneDB%2FDroneDB/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DroneDB","download_url":"https://codeload.github.com/DroneDB/DroneDB/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247842994,"owners_count":21005380,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["database","drones","hacktoberfest","mapping","uav","uav-images"],"created_at":"2024-08-01T16:00:39.707Z","updated_at":"2025-04-08T12:32:43.207Z","avatar_url":"https://github.com/DroneDB.png","language":"C++","funding_links":[],"categories":["C++","Tools","Computer Vision 🤖"],"sub_categories":["Modules 🧩"],"readme":"![ddb-logo-banner](https://user-images.githubusercontent.com/1951843/86480474-0fcc4280-bd1c-11ea-8663-a7a37f631565.png)\n\n![license](https://img.shields.io/github/license/DroneDB/DroneDB) ![commits](https://img.shields.io/github/commit-activity/m/DroneDB/DroneDB) ![languages](https://img.shields.io/github/languages/top/DroneDB/DroneDB) ![Docs](https://github.com/DroneDB/DroneDB/workflows/Docs/badge.svg) ![C/C++ CI](https://github.com/DroneDB/DroneDB/workflows/C/C++%20CI/badge.svg) ![NodeJS CI](https://github.com/DroneDB/DroneDB/workflows/NodeJS%20CI/badge.svg) ![.NET CI](https://github.com/DroneDB/DroneDB/workflows/.NET%20CI/badge.svg)\n\nDroneDB is free and open source software for aerial data storage. It provides a convenient location to store images, orthophotos, digital elevation models, point clouds or any other file.\n\n![image](https://user-images.githubusercontent.com/1951843/147839499-0c263b47-4e51-437c-adbb-cc0bea50d29f.png)\n\nSee it in action: https://hub.dronedb.app/r/pierotofy/brighton-beach\n\n## Documentation\n\nhttps://docs.dronedb.app\n\n## Roadmap\n\nWe welcome feedback from the community to decide what to implement or prioritize next. Here's the current list of features that are going to be implemented soon:\n\n - [X] Support for parsing/display of 360/180 panoramic images\n - [ ] Support for adding annotations to maps\n - [ ] Persistent annotations/measurements on point clouds\n - [X] Support for adding measurements to maps\n - [ ] 1.0 release on Registry (expected mid 2022)\n - [ ] User management UI\n - [X] Logo/brand customizations\n - [X] Organizational accounts\n - [X] STAC catalog generation\n - [ ] Improve Documentation\n - [ ] Processing (ability to perform operations on point clouds, orthophotos, images, etc.)\n - [ ] Plugins framework\n\n\n## Building From Source\n\nRequirements:\n * sqlite3\n * spatialite\n * cmake\n * libgeos\n * g++ \u003e= 10.1.0 (very important! :warning: g++ 8 has a [bug](https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90050) in the stdc++fs library that will prevent the software from running properly)\n * GDAL \u003e= 2.1\n \nOn Ubuntu you can simply execute this script to install the dependencies:\n\n```bash\nscripts/ubuntu_deps.sh\n```\n\nThen:\n\n```bash\ngit clone --recurse-submodules https://github.com/DroneDB/DroneDB ddb\ncd ddb\nmkdir build \u0026\u0026 cd build\ncmake .. \u0026\u0026 make\n```\n\nOn Windows you should install Visual Studio (the free Community Edition works great), Git and CMake. Then:\n\n```\ngit clone --recurse-submodules https://github.com/DroneDB/DroneDB ddb\ncd ddb\nmd build \u0026\u0026 cd build\ncmake ..\ncmake --build . --config Release --target ALL_BUILD -- /maxcpucount:14\n```\n\n## Building NodeJS bindings\n\nAfter you've made a successful build (see above), make sure the `build` directory is empty (remove it) and that you have `npm` installed. Then:\n\n```\nnpm install\n```\n\nShould be sufficient to build the NodeJS bindindgs.\n\nYou can test that they work by issuing:\n\n```\nscripts\\setup_windows_env.bat (Windows only)\nnpm test\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDroneDB%2FDroneDB","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FDroneDB%2FDroneDB","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FDroneDB%2FDroneDB/lists"}