A user-friendly, commercial grade software for drone image processing.
 
 
 
 
 
 
Go to file
Piero Toffanin cd1fdd48f4 Python version check, docker-compose with nodeodm instance 2016-12-01 10:39:42 -05:00
app Added proposed changes by @mojodna, dropped react-addons-update upgraded to use immutability-helper 2016-11-28 15:18:53 -05:00
db
nodeodm Update models.py 2016-12-01 08:32:45 -05:00
screenshots Added layer list on map display, popup info, download links on map, measurement tool 2016-11-17 18:51:07 -05:00
webodm Added swagger viewer 2016-11-16 15:37:35 -05:00
.gitignore
.gitmodules
.travis.yml
CONDUCT.md
CONTRIBUTING.md Update CONTRIBUTING.md 2016-11-19 15:01:41 -05:00
Dockerfile reverted node version to 6.x 2016-11-08 09:40:59 -05:00
LICENSE.md
README.md Update README.md 2016-11-27 11:53:26 -05:00
docker-compose.nodeodm.yml Python version check, docker-compose with nodeodm instance 2016-12-01 10:39:42 -05:00
docker-compose.yml Python version check, docker-compose with nodeodm instance 2016-12-01 10:39:42 -05:00
manage.py
package.json Added proposed changes by @mojodna, dropped react-addons-update upgraded to use immutability-helper 2016-11-28 15:18:53 -05:00
requirements.txt Added swagger viewer 2016-11-16 15:37:35 -05:00
start.sh Python version check, docker-compose with nodeodm instance 2016-12-01 10:39:42 -05:00
wait-for-it.sh
webpack-server.js
webpack.config.js Preliminary map display, tweaks and testing necessary 2016-11-09 16:13:43 -05:00

README.md

WebODM

Build Status

A free, user-friendly, extendable application and API for drone image processing. Generate georeferenced maps, point clouds and textured 3D models from aerial images. It uses OpenDroneMap for processing.

Alt text

Alt text

If you know Python, web technologies (JS, HTML, CSS, etc.) or both, make a fork, contribute something that interests you, and make a pull request! All ideas are considered and people of all skill levels are welcome. See the Contributing document for more information.

Getting Started

The quickest way to get started is by using Docker.

  • From the Docker Quickstart Terminal (Windows / OSX) or from the command line (Linux) type:
git clone https://github.com/OpenDroneMap/WebODM
cd WebODM
pip install docker-compose
docker-compose up
  • If you're on Windows/OSX, find the IP of your Docker machine by running this command from your Docker Quickstart Terminal:
docker-machine ip

Linux users can connect to 127.0.0.1.

  • Open a Web Browser to http://<yourDockerMachineIp>:8000
  • Log in with the default credentials: "admin:admin"

Need a processing node for testing?

At startup, WebODM needs to be linked to one or more processing nodes running node-OpenDroneMap. It's recommended that you setup your own processing nodes, but if you just want to do some quick tests, use the following:

Hostname: nodeodm.masseranolabs.com
Port: 80

Run it natively

If you want to run WebODM natively, you will need to install:

  • PostgreSQL (>= 9.5)
  • PostGIS 2.3
  • Python 3.5

On Linux, make sure you have:

apt-get install binutils libproj-dev gdal-bin

On Windows use the OSGeo4W installer to install GDAL.

Then these steps should be sufficient to get you up and running:

git clone https://github.com/OpenDroneMap/WebODM

Create a WebODM\webodm\local_settings.py file containing:

DATABASES = {
    'default': {
        'ENGINE': 'django.contrib.gis.db.backends.postgis',
        'NAME': 'webodm_dev',
        'USER': 'postgres',
        'PASSWORD': 'postgres',
        'HOST': 'localhost',
        'PORT': '5432',
    }
}

Then:

pip install -r requirements.txt
npm install -g webpack
npm install
webpack
chmod +x start.sh && ./start.sh

If you are getting a rt_raster_gdal_warp: Could not create GDAL transformation object for output dataset creation, make sure that your PostGIS installation has PROJ support:

SELECT PostGIS_Full_Version();

You may also need to set the environment variable PROJSO to the .so or .dll projection library your PostGIS is using. This just needs to have the name of the file. So for example on Windows, you would in Control Panel -> System -> Environment Variables add a system variable called PROJSO and set it to libproj.dll (if you are using proj 4.6.1). You'll have to restart your PostgreSQL service/daemon after this change. http://postgis.net/docs/manual-2.0/RT_ST_Transform.html

Roadmap

  • User Registration / Authentication
  • UI mockup
  • Task Processing
  • 2D Map Display
  • 3D model display
  • Cluster management and setup.
  • Mission Planner
  • API
  • Documentation
  • Android Mobile App
  • iOS Mobile App
  • Processing Nodes Volunteer Network
  • Unit Testing

Terminology

  • Project: A collection of tasks (successfully processed, failed, waiting to be executed, etc.)
  • Task: A collection of input aerial images and an optional set of output results derived from the images, including an orthophoto, a georeferenced model and a textured model. A Task's output is processed by OpenDroneMap.
  • ProcessingNode: An instance usually running on a separate VM, or on a separate machine which accepts aerial images, runs OpenDroneMap and returns the processed results (orthophoto, georeferenced model, etc.). Each node communicates with WebODM via a lightweight API such as node-OpenDroneMap. WebODM manages the distribution of Task to different ProcessingNode instances.
  • ImageUpload: aerial images.
  • Mission: A flight path and other information (overlap %, angle, ...) associated with a particular Task.

image

er diagram - webodm 2