mirror of
https://github.com/30hours/3lips.git
synced 2024-11-08 12:25:42 +00:00
Update scripts readme, readme and imports
This commit is contained in:
parent
543d5dcb60
commit
bad9f501a1
5 changed files with 19 additions and 10 deletions
|
@ -16,7 +16,7 @@ See a live instance at [http://3lips.30hours.dev](http://3lips.30hours.dev).
|
|||
|
||||
- Install docker and docker-compose on the host machine.
|
||||
- Clone this repository to some directory.
|
||||
- Edit the [./config/config.yml](./config./config.yml) file for scenario.
|
||||
- Edit the [./config/config.yml](config./config.yml) file for scenario.
|
||||
- Run the docker compose command.
|
||||
|
||||
```bash
|
||||
|
|
|
@ -3,13 +3,12 @@
|
|||
@author 30hours
|
||||
"""
|
||||
|
||||
from data.Ellipsoid import Ellipsoid
|
||||
from algorithm.geometry.Geometry import Geometry
|
||||
import numpy as np
|
||||
import math
|
||||
import numpy as np
|
||||
import itertools
|
||||
|
||||
from concurrent.futures import ThreadPoolExecutor
|
||||
from data.Ellipsoid import Ellipsoid
|
||||
from algorithm.geometry.Geometry import Geometry
|
||||
|
||||
class EllipseParametric:
|
||||
|
||||
|
|
|
@ -3,10 +3,11 @@
|
|||
@author 30hours
|
||||
"""
|
||||
|
||||
import math
|
||||
import numpy as np
|
||||
|
||||
from data.Ellipsoid import Ellipsoid
|
||||
from algorithm.geometry.Geometry import Geometry
|
||||
import numpy as np
|
||||
import math
|
||||
|
||||
class EllipsoidParametric:
|
||||
|
||||
|
|
|
@ -3,9 +3,10 @@
|
|||
@author 30hours
|
||||
"""
|
||||
|
||||
from algorithm.geometry.Geometry import Geometry
|
||||
import numpy as np
|
||||
import math
|
||||
import numpy as np
|
||||
|
||||
from algorithm.geometry.Geometry import Geometry
|
||||
|
||||
class SphericalIntersection:
|
||||
|
||||
|
|
|
@ -2,7 +2,15 @@ This folder is for post-processing scripts on API data.
|
|||
|
||||
## Scripts
|
||||
|
||||
- **plot_accuracy.py** plots a comparison between ADS-B truth and target localisation data in ENU coordinates.
|
||||
- **plot_accuracy.py** plots a comparison between ADS-B truth and target localisation data in ENU coordinates. Also generates RMS error values for the data.
|
||||
```
|
||||
python plot_associate.py <input.ndjson> <target-id> (--start_time <posix>) (--stop_time <posix>)
|
||||
```
|
||||
|
||||
- **plot_associate.py** plots when each radar detected a particular target in a 2D heatmap.
|
||||
```
|
||||
python plot_associate.py <input.ndjson> <target-id> (--start_time <posix>) (--stop_time <posix>)
|
||||
```
|
||||
|
||||
## Docker Environment
|
||||
|
||||
|
|
Loading…
Reference in a new issue