{"id":48920813,"url":"https://github.com/webodm/cloudodx","last_synced_at":"2026-04-17T05:01:23.506Z","repository":{"id":351921306,"uuid":"1203306011","full_name":"WebODM/CloudODX","owner":"WebODM","description":"A command line tool to process aerial imagery in the cloud. 🌩","archived":false,"fork":false,"pushed_at":"2026-04-17T03:08:13.000Z","size":116,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-17T04:39:03.206Z","etag":null,"topics":["cli","command-line","drone","mapping","photogrammetry"],"latest_commit_sha":null,"homepage":"https://webodm.org","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/WebODM.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-06T23:26:11.000Z","updated_at":"2026-04-17T03:08:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"a63eef5a-5a68-4317-95f2-717008586ec5","html_url":"https://github.com/WebODM/CloudODX","commit_stats":null,"previous_names":["webodm/cloudodx"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/WebODM/CloudODX","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebODM%2FCloudODX","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebODM%2FCloudODX/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebODM%2FCloudODX/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebODM%2FCloudODX/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WebODM","download_url":"https://codeload.github.com/WebODM/CloudODX/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WebODM%2FCloudODX/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31915900,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"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":["cli","command-line","drone","mapping","photogrammetry"],"created_at":"2026-04-17T05:00:32.901Z","updated_at":"2026-04-17T05:01:23.455Z","avatar_url":"https://github.com/WebODM.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CloudODX\n\n![cloudodx-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 [NodeODX](https://github.com/WebODM/NodeODX)'s API.\n\n\u003cimg width=\"979\" height=\"512\" alt=\"image\" src=\"https://github.com/user-attachments/assets/09bf830d-e22a-4379-bec8-f136c902b754\" /\u003e\n\n## Getting Started\n\n1. [Download the application](https://github.com/WebODM/CloudODX/releases) for Windows, Mac or Linux.\n2. Extract the application in a folder of your choice (for example, `c:\\odx`).\n3. Open a command prompt and navigate to the folder (open the \"Command Prompt\" application, then `cd \\odx`).\n4. Run `odx 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:\\odx\\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`odx args`\n\nSee `odx --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.webodm.org/ground-control-points/#gcp-file-format) and place it along with the images.\n\n## Processing Node Management\n\nBy default CloudODX will randomly choose a default node from the list of [publicly available nodes](https://github.com/WebODM/CloudODX/blob/master/public_nodes.json). If you are running your own processing node via [NodeODX](https://github.com/WebODM/NodeODX) you can add a node by running the following:\n\n`odx node add mynode http://address:port`\n\nThen run odx as following:\n\n`odx -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`odx node -v`\n\nFor more information run `odx node --help`.\n\nIf you are interested in adding your node to the list of [public nodes](https://github.com/WebODM/CloudODX/blob/master/public_nodes.json) please open an [issue](https://github.com/WebODM/CloudODX/issues).\n\n## Running From Sources\n\n```bash\ngo get -u github.com/WebODM/CloudODX\ngo run github.com/WebODM/CloudODX/cmd/odx --help\n```\n\n## Building From Sources\n\nWe use [Goreleaser](https://goreleaser.com/) to build and deploy CloudODX. 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/WebODM/CloudODX).\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 WebODM on social media.\n- Join a [community](https://webodm.org/community)\n- Become a contributor!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebodm%2Fcloudodx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwebodm%2Fcloudodx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwebodm%2Fcloudodx/lists"}