A command line launch of SEAMCAT (i.e. without GUI) is possible using the same seamcat.jar file that has been downloaded. From the command line with a workspace file called "myWorkspace.sws" the following command will launch the workspace and save the results in myWorkspace.swr by default.
java -cp seamcat.jar org.seamcat.CommandLine myWorkspace.sws |
---|
Several options are possible. The result file name can be changed by using the option: result=otherName.swr and the number of events can be specified by using the option: events=12345. The example below uses all these parameters:
java -cp seamcat.jar org.seamcat.CommandLine Default-ws.sws result=commandLine.swr events=200000 |
---|