public static void main(String[] args) {
    Configuration.setValue(AVKey.INITIAL_LATITUDE, 49.05);
    Configuration.setValue(AVKey.INITIAL_LONGITUDE, -122.78);
    Configuration.setValue(AVKey.INITIAL_ALTITUDE, 8000);

    ApplicationTemplate.start("World Wind Multi Path", AppFrame.class);
  }
  public static void main(String[] args) {
    // zoom to San Francisco downtown
    Configuration.setValue(AVKey.INITIAL_ALTITUDE, 34e3);
    Configuration.setValue(AVKey.INITIAL_LATITUDE, 37.9521d);
    Configuration.setValue(AVKey.INITIAL_LONGITUDE, -119.7761d);

    // Adjust configuration values before instantiation
    ApplicationTemplate.start("World Wind Terrain Intersections", AppFrame.class);
  }
 public static void main(String[] args) {
   ApplicationTemplate.start("World Wind Airspace Builder", AppFrame.class);
 }
 /**
  * Marked as deprecated to keep it out of the javadoc.
  *
  * @param args the arguments passed to the program.
  * @deprecated
  */
 public static void main(String[] args) {
   //noinspection deprecation
   ApplicationTemplate.start("World Wind Line Builder", LineBuilder.AppFrame.class);
 }