public static void main(String[] args) {
   // Adjust configuration values before instantiation
   Configuration.setValue(AVKey.GLOBE_CLASS_NAME, EarthFlat.class.getName());
   Configuration.setValue(AVKey.INITIAL_ALTITUDE, 27e6);
   Configuration.setValue(AVKey.INITIAL_LATITUDE, 0);
   Configuration.setValue(AVKey.INITIAL_LONGITUDE, 88);
   ApplicationTemplate.start("World Wind Icon Picking", AppFrame.class);
 }
 public static void main(String[] args) {
   Configuration.setValue(AVKey.INITIAL_LATITUDE, 37.8432);
   Configuration.setValue(AVKey.INITIAL_LONGITUDE, -105.0527);
   Configuration.setValue(AVKey.INITIAL_ALTITUDE, 7000);
   ApplicationTemplate.start("World Wind Video on Terrain", 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);
 }