OpenDroneMap-WebODM/README.md

165 wiersze
6.3 KiB
Markdown
Czysty Zwykły widok Historia

2016-08-15 19:54:31 +00:00
# WebODM
2016-10-05 20:38:50 +00:00
[![Build Status](https://travis-ci.org/OpenDroneMap/WebODM.svg?branch=master)](https://travis-ci.org/OpenDroneMap/WebODM)
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](https://github.com/OpenDroneMap/OpenDroneMap) for processing.
2016-08-15 19:54:31 +00:00
2016-09-12 00:08:31 +00:00
![Alt text](/screenshots/ui-mockup.png?raw=true "WebODM")
![Alt text](/screenshots/dashboard.png?raw=true "Dashboard")
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](/CONTRIBUTING.md) document for more information.
2016-09-12 00:08:31 +00:00
## Getting Started
2016-12-01 16:50:33 +00:00
* Install the following applications (if they are not installed already):
2016-12-01 16:35:26 +00:00
- [Docker](https://www.docker.com/)
- [Python](https://www.python.org/downloads/)
- [Git](https://git-scm.com/downloads)
2016-09-12 00:08:31 +00:00
* From the Docker Quickstart Terminal (Windows) or from the command line (Mac / Linux) type:
```bash
2016-09-12 00:08:31 +00:00
git clone https://github.com/OpenDroneMap/WebODM
cd WebODM
sudo easy_install pip
sudo pip install docker-compose
./webodm.sh start
2016-09-12 00:08:31 +00:00
```
* If you're on Windows find the IP of your Docker machine by running this command from your Docker Quickstart Terminal:
2016-09-12 00:08:31 +00:00
```
docker-machine ip
```
Linux / Mac, users can connect to 127.0.0.1.
2016-09-12 00:08:31 +00:00
* Open a Web Browser to `http://<yourDockerMachineIp>:8000`
2016-09-12 00:11:15 +00:00
* Log in with the default credentials: "admin:admin"
2016-09-12 00:08:31 +00:00
To stop WebODM press CTRL+C or run:
```
./webodm.sh stop
```
To update WebODM to the latest version use:
```
./webodm.sh update
```
We recommend that you read the [Docker Documentation](https://docs.docker.com/) to familiarize with the application lifecycle, setup and teardown, or for more advanced uses. Look at the contents of the webodm.sh script to understand what commands are used to launch WebODM.
2016-12-01 16:42:53 +00:00
### Common Troubleshooting
if you get the following error while starting WebODM:
```bash
from six.moves import _thread as thread
ImportError: cannot import name _thread
```
Try running:
```bash
sudo pip install --ignore-installed six
```
If you are getting a **MemoryError** while processing the images, make sure that your Docker environment has enough RAM allocated. http://stackoverflow.com/a/39720010
2016-12-01 16:35:26 +00:00
### Add More Processing Nodes
2016-12-01 16:42:53 +00:00
WebODM can be linked to one or more processing nodes running [node-OpenDroneMap](https://github.com/pierotofy/node-OpenDroneMap). The default configuration already includes a "node-odm-1" processing node which runs on the same machine as WebODM, just to help you get started. As you become more familiar with WebODM, you might want to install processing nodes on separate machines.
2016-09-12 00:08:31 +00:00
## Run it natively
If you want to run WebODM natively, you will need to install:
* PostgreSQL (>= 9.5)
* PostGIS 2.3
* Python 3.5
2016-12-13 15:11:14 +00:00
* GDAL (>= 2.1)
2016-09-12 00:08:31 +00:00
On Linux, make sure you have:
```
apt-get install binutils libproj-dev gdal-bin
```
2016-12-01 16:35:26 +00:00
On Windows use the [OSGeo4W](https://trac.osgeo.org/osgeo4w/) installer to install GDAL. MacOS users can use:
```
brew install postgres postgis
```
2016-09-12 00:08:31 +00:00
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 your database settings:
2016-09-12 00:08:31 +00:00
```
DATABASES = {
'default': {
'ENGINE': 'django.contrib.gis.db.backends.postgis',
2016-09-12 00:08:31 +00:00
'NAME': 'webodm_dev',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': 'localhost',
'PORT': '5432',
}
}
```
From psql or [pgadmin](https://www.pgadmin.org), connect to the database and set the [postgis.enable_outdb_rasters](http://postgis.net/docs/manual-2.2/postgis_enable_outdb_rasters.html) and [postgis.gdal_enabled_drivers](http://postgis.net/docs/postgis_gdal_enabled_drivers.html) settings:
```sql
ALTER SYSTEM SET postgis.enable_outdb_rasters TO True;
ALTER SYSTEM SET postgis.gdal_enabled_drivers TO 'GTiff';
```
2016-09-12 00:08:31 +00:00
Then:
```
pip install -r requirements.txt
sudo npm install -g webpack
npm install
webpack
2016-09-12 00:08:31 +00:00
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](http://postgis.net/docs/manual-2.0/RT_ST_Transform.html)
2016-08-15 19:54:31 +00:00
## Roadmap
- [X] User Registration / Authentication
2016-09-12 00:08:31 +00:00
- [X] UI mockup
- [X] Task Processing
2016-11-11 17:55:56 +00:00
- [X] 2D Map Display
- [ ] 3D model display
2016-10-26 21:29:27 +00:00
- [X] Cluster management and setup.
2016-08-15 19:54:31 +00:00
- [ ] Mission Planner
2016-10-26 21:29:27 +00:00
- [X] API
2016-08-15 19:54:31 +00:00
- [ ] Documentation
- [ ] Android Mobile App
- [ ] iOS Mobile App
- [ ] Processing Nodes Volunteer Network
2016-10-26 21:29:27 +00:00
- [X] Unit Testing
2016-08-15 19:54:31 +00:00
2016-08-16 22:03:40 +00:00
## 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.
2016-08-16 22:08:53 +00:00
- `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](https://www.github.com/pierotofy/node-OpenDroneMap). WebODM manages the distribution of `Task` to different `ProcessingNode` instances.
2016-08-16 22:03:40 +00:00
- `ImageUpload`: aerial images.
- `Mission`: A flight path and other information (overlap %, angle, ...) associated with a particular `Task`.
![image](https://cloud.githubusercontent.com/assets/1951843/17680196/9bfe878e-6304-11e6-852e-c09f1e02f3c0.png)
![er diagram - webodm 2](https://cloud.githubusercontent.com/assets/1951843/17717379/4a227e28-63d3-11e6-9518-6a63cc1bcd3b.png)