Skip to content
Snippets Groups Projects
Commit 37f08d45 authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

a few small edits to readme and main

parent 11181cbc
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@
In order to launch the command-line version of the TrawlExpert, launch src/main/Main.java
in Eclipse. This will load the command line tool with all the data needed to run the
program. Try typing "tree" and pressing Enter to see all of the possible searches in the
dataset. Then type "records Cottus cognates" for example to search for a certain species.
Then you can type "histogram", "sum", "list" or "cluster 3000" for example to see different
dataset. Then type "records Cottus cognatus" for example to search for a certain species.
Then you can type "histogram", "sum", "list" or "cluster 10000" for example to see different
results.
==== TOMCAT ====
......
......@@ -226,7 +226,7 @@ public class Main {
System.out.format(format, (i+1), String.format("%.5f", clusters.get(i).centroid().getY()), String.format("%.5f", clusters.get(i).centroid().getX()), clusters.get(i).N(), clusters.get(i).getCount());
while(true) {
System.out.println("Available commands: list (cluster #), clusters, exit\n");
System.out.println("Available commands: list (cluster #), clusters, exit");
System.out.print("> ");
Scanner s = new Scanner(System.in);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment