Use the GitHub interface to fork the repository https://github.com/jgrocha/ta-gc.git
Clone your repository to your local computer:
git clone https://github.com/yourname/ta-gc.git
You will get a new folder called ta-gc
.
To install WebODM, we will need:
- Docker
- Python
Howto: https://www.digitalocean.com/community/tutorials/como-instalar-e-usar-o-docker-no-ubuntu-18-04-pt
Add the Official Docker Repository
sudo apt install apt-transport-https ca-certificates curl software-properties-common
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable"
apt policy docker-ce
Install
sudo apt install docker-ce docker-compose
Run without sudo
sudo usermod -aG docker ${USER}
su - ${USER}
sudo apt install python-setuptools
docker run hello-world
Use the shell (Linux/OSX) or the Power shell (windows) to run:
cd ta-gc
git clone https://github.com/OpenDroneMap/WebODM --config core.autocrlf=input --depth 1
cd WebODM
./webodm.sh update
It will take some time to download the WebODM image. Wait until the image if fully downloaded.
./webodm.sh start
After the service start, you can use WebODM from: http://localhost:8000
Open the WebODM interface: http://localhost:8000
Create a new task and add all the photos of this repository
Check if the results are fine (ortophoto, DSM, DTM and Point cloud)
Download all assets (all.zip) from WebODM interface to your local repo.
Unzip and add the assets to the repo, with:
mkdir results
unzip all.zip -d results
git add results
git commit -m "WebODM results"
git push origin
Your local folder should look like:
Send an email to the teacher with the link to your repo.