Updated to worldwind release 20070817
[worldwind-tracker.git] / gov / nasa / worldwind / globes / Earth.java
blobafacc3a6860e5fb31945d6f5a07a9f215abb838d
1 /*
2 Copyright (C) 2001, 2006 United States Government
3 as represented by the Administrator of the
4 National Aeronautics and Space Administration.
5 All Rights Reserved.
6 */
7 package gov.nasa.worldwind.globes;
9 /**
10 * @author Tom Gaskins
11 * @version $Id: Earth.java 2471 2007-07-31 21:50:57Z tgaskins $
14 public class Earth extends EllipsoidalGlobe
16 public static final double WGS84_EQUATORIAL_RADIUS = 6378137.0; // ellipsoid equatorial getRadius, in meters
17 public static final double WGS84_POLAR_RADIUS = 6378137.0; //6356752.3; // ellipsoid polar getRadius, in meters
18 public static final double WGS84_ES = 0;//0.00669437999013; // eccentricity squared, semi-major axis
20 public Earth()
22 super(WGS84_EQUATORIAL_RADIUS, WGS84_POLAR_RADIUS, WGS84_ES, new EarthElevationModel());