{"id":28383034,"url":"https://github.com/opendronemap/cloudodm","last_synced_at":"2025-06-25T07:30:57.541Z","repository":{"id":48435629,"uuid":"162471075","full_name":"OpenDroneMap/CloudODM","owner":"OpenDroneMap","description":"A command line tool to process aerial imagery in the cloud. 🌩","archived":false,"fork":false,"pushed_at":"2023-12-18T22:09:43.000Z","size":90,"stargazers_count":69,"open_issues_count":5,"forks_count":13,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-06-21T22:30:17.348Z","etag":null,"topics":["cloud","drones","golang","odm","opendronemap","photogrammetry","processing"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenDroneMap.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-12-19T17:41:07.000Z","updated_at":"2025-06-20T15:24:06.000Z","dependencies_parsed_at":"2022-08-31T15:01:15.338Z","dependency_job_id":"4f00f6d6-52b4-42e9-b9db-99b1533b0a9b","html_url":"https://github.com/OpenDroneMap/CloudODM","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/OpenDroneMap/CloudODM","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenDroneMap%2FCloudODM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenDroneMap%2FCloudODM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenDroneMap%2FCloudODM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenDroneMap%2FCloudODM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenDroneMap","download_url":"https://codeload.github.com/OpenDroneMap/CloudODM/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenDroneMap%2FCloudODM/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261826884,"owners_count":23215660,"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":["cloud","drones","golang","odm","opendronemap","photogrammetry","processing"],"created_at":"2025-05-30T05:11:43.895Z","updated_at":"2025-06-25T07:30:57.535Z","avatar_url":"https://github.com/OpenDroneMap.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CloudODM\n\n![cloudodm-64x64](https://user-images.githubusercontent.com/1951843/51078515-02348000-1684-11e9-8f96-ed056b0cbe98.png)\n\nA command line tool to process aerial imagery in the cloud via [NodeODM](https://github.com/OpenDroneMap/NodeODM)'s API.\n\n![image](https://user-images.githubusercontent.com/1951843/51078579-3492ad00-1685-11e9-9fcd-0beda36ad56b.png)\n\n## Getting Started\n\n1. [Download the application](https://github.com/OpenDroneMap/CloudODM/releases) for Windows, Mac or Linux.\n2. Extract the application in a folder of your choice (for example, `c:\\odm`).\n3. Open a command prompt and navigate to the folder (open the \"Command Prompt\" application, then `cd \\odm`).\n4. Run `odm c:\\path\\to\\images --dsm`.\n\nThis command will process all the images in the directory `c:\\path\\to\\images` and save the results (including an orthophoto, a point cloud, a 3D model and a digital surface model) to `c:\\odm\\output`. You can pass more options for processing by appending them at the end of the command. To see a list of options, simply issue:\n\n`odm args`\n\nSee `odm --help` for more options.\n\n## Using GCPs\n\nTo include a GCP for additional georeferencing accuracy, simply create a .txt file according to the [Ground Control Points format specification](https://docs.opendronemap.org/gcp/#gcp-file-format) and place it along with the images.\n\n## Processing Node Management\n\nBy default CloudODM will randomly choose a default node from the list of [publicly available nodes](https://github.com/OpenDroneMap/CloudODM/blob/master/public_nodes.json). If you are running your own processing node via [NodeODM](https://github.com/OpenDroneMap/NodeODM) you can add a node by running the following:\n\n`odm node add mynode http://address:port`\n\nThen run odm as following:\n\n`odm -n mynode c:\\path\\to\\images`\n\nIf no node is specified, the `default` node is selected. To see a list of nodes you can run:\n\n`odm node -v`\n\nFor more information run `odm node --help`.\n\nIf you are interested in adding your node to the list of [public nodes](https://github.com/OpenDroneMap/CloudODM/blob/master/public_nodes.json) please open an [issue](https://github.com/OpenDroneMap/CloudODM/issues).\n\n## Running From Sources\n\n```bash\ngo get -u github.com/OpenDroneMap/CloudODM\ngo run github.com/OpenDroneMap/CloudODM/cmd/odm --help\n```\n\n## Building From Sources\n\nWe use [Goreleaser](https://goreleaser.com/) to build and deploy CloudODM. See Goreleaser's [documentation](https://goreleaser.com/) for installation and deployment instructions. You should just need to install the `goreleaser` application and then run:\n\n`goreleaser release --skip-publish --snapshot`\n\n## Reporting Issues / Feature Requests / Feedback\n\nPlease open an [issue](https://github.com/OpenDroneMap/CloudODM).\n\n## Support the Project\n\nThere are many ways to contribute back to the project:\n\n- ⭐️ us on GitHub.\n- Help us test the application.\n- Spread the word about OpenDroneMap on social media.\n- Help answer questions on the community [forum](https://community.opendronemap.org)\n- Become a contributor!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopendronemap%2Fcloudodm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopendronemap%2Fcloudodm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopendronemap%2Fcloudodm/lists"}