Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
72f95bb5
Commit
72f95bb5
authored
6 years ago
by
Lawrence Chung
Browse files
Options
Downloads
Plain Diff
Fix
parents
e94e8396
e9219b20
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
READMEFORTA.txt
+23
-0
23 additions, 0 deletions
READMEFORTA.txt
designSpec/designSpec.tex.bak
+1
-1
1 addition, 1 deletion
designSpec/designSpec.tex.bak
src/main/Main.java
+1
-0
1 addition, 0 deletions
src/main/Main.java
with
25 additions
and
1 deletion
READMEFORTA.txt
0 → 100644
+
23
−
0
View file @
72f95bb5
==== COMMAND LINE ====
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 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 ====
Tomcat is significantly more tricky. There is a makefile that when run from the main project
directory should allow the server to start. Accessing http://localhost:8080/Trawl should
then load the website. However, the amount of time needed to properly configure tomcat on
your machine will not be worth taking the time to figure out. As such, a live version of the
website is available at http://trawl.schankula.ca/Trawl. This runs the exact same code as
would run locally if you ran tomcat. For example, try selecting a species and then clicking
"load" on the "list" and seeing how many results there are. Then try viewing histogram,
heat map, map, etc. For results greater than ~20,000 results, don't attempt to view the
heat map or map as this will likely lag your browser (the server-side code handles this fine;
the client can get laggy). Try out the clustering by typing in a value of at least 1,000km^2
for any size of search (even "any" for all fields). You can also try out filtering by year
and seeing that there are only results in those years. Lastly, for "cluster" and "map"
options, try clicking the map markers to see more information.
This diff is collapsed.
Click to expand it.
designSpec/designSpec.tex.bak
+
1
−
1
View file @
72f95bb5
...
...
@@ -287,4 +287,4 @@ Functionally, there are many future goals in the development of \textit{TrawlExp
\bibliography
{
bib
}
\end{document}
\ No newline at end of file
\end{document}
This diff is collapsed.
Click to expand it.
src/main/Main.java
+
1
−
0
View file @
72f95bb5
...
...
@@ -227,6 +227,7 @@ public class Main {
while
(
true
)
{
System
.
out
.
println
(
"Available commands: list (cluster #), clusters, exit"
);
System
.
out
.
print
(
"> "
);
Scanner
s
=
new
Scanner
(
System
.
in
);
String
command
=
s
.
nextLine
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment