View Javadoc
1   package au.gov.amsa.animator;
2   
3   public class AnimatorMain {
4   
5       public static void main(String[] args) throws Exception {
6           System.setProperty("http.proxyHost", "proxy.amsa.gov.au");
7           System.setProperty("http.proxyPort", "8080");
8           System.setProperty("https.proxyHost", "proxy.amsa.gov.au");
9           System.setProperty("https.proxyPort", "8080");
10          new Animator(Map.createMap(), new ModelManyCraft(Sources.singleDay(), 10000),
11                  new ViewRecentTracks(ViewRecentTracksOption.SHOW_SPEED)).start();
12      }
13  
14  }