Commit 720f977d6bff290ac3ed92f31bb26a230077d707

Authored by lsagona
1 parent 020babaa0a
Exists in master and in 1 other branch dev

modif readme

Showing 1 changed file with 7 additions and 11 deletions Inline Diff

1 #Intro
1 2
##Intro 2
3
Maritime Visualisation is a tool that allow you to visualize ais data. 4 3 Maritime Visualisation is a tool that allow you to visualize ais data.
5 4
## Usage 6 5 ## Usage
You can import data by clicking on File -> Import, and select your CSV file. The CSV file must be in this format : <br/> 7 6 You can import data by clicking on File -> Import, and select your CSV file. The CSV file must be in this format : <br/>
MMSI,BaseDateTime,LAT,LON,SOG,COG,Heading,VesselName,IMO,CallSign,VesselType,Status,Length,Width,Draft,Cargo<br/> 8 7 MMSI,BaseDateTime,LAT,LON,SOG,COG,Heading,VesselName,IMO,CallSign,VesselType,Status,Length,Width,Draft,Cargo<br/>
![Smaller icon](src/main/resources/readmeImage/import.png?raw=true 'Import example')<br/> 9 8 ![Smaller icon](src/main/resources/readmeImage/import.png?raw=true 'Import example')<br/>
A specific MMSI can be highlighted by selecting it in the left panel and specific data can be plot in the bottom panel.<br/> 10 9 A specific MMSI can be highlighted by selecting it in the left panel and specific data can be plot in the bottom panel.<br/>
![Smaller icon](src/main/resources/readmeImage/selectedData.png?raw=true 'Selected data example')<br/> 11 10 ![Smaller icon](src/main/resources/readmeImage/selectedData.png?raw=true 'Selected data example')<br/>
12 11
## Requirements 13 12 ## Requirements
14 13
* Java installed (Jdk8). 15 14 * Java installed (Jdk8).
* Gradle (6.2+) 16 15 * Gradle (6.2+)
17 16
## Importing and running project 18 17 ## Importing and running project
19 18
Clone the project with : 20 19 Clone the project with :
``` 21
git clone https://disc.univ-fcomte.fr/gitlab/fditeam/visualisation-maritime.git 22
``` 23
24 20
21 $git clone https://disc.univ-fcomte.fr/gitlab/fditeam/visualisation-maritime.git
22
Go to : 25 23 Go to :
``` 26
cd visualisation-maritime 27
``` 28