Skip to content

Commit c6e6f87

Browse files
committed
Add README.md
1 parent 6c228e9 commit c6e6f87

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

README.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
# OptimalFlightPaths
22

33
[![Build Status](https://github.com/OpenSourceAWE/OptimalFlightPaths.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/OpenSourceAWE/OptimalFlightPaths.jl/actions/workflows/CI.yml?query=branch%3Amain)
4+
5+
## Installation
6+
7+
First, install Julia 1.10 or newer as explained [here](https://ufechner7.github.io/2024/08/09/installing-julia-with-juliaup.html).
8+
9+
Checkout this repo:
10+
11+
```
12+
git clone https://github.com/OpenSourceAWE/OptimalFlightPaths.jl.git
13+
```
14+
Start Julia with
15+
```
16+
cd OptimalFlightPaths.jl
17+
julia --project
18+
```
19+
20+
Install the dependencies with:
21+
```
22+
using Pkg
23+
Pkg.instantiate()
24+
```
25+
26+
Run the example with:
27+
```
28+
include("examples/create_flightpath.jl")
29+
```
30+
You should see a tilted figure of eight.

0 commit comments

Comments
 (0)