Add ol.Ellipsoid#e and #eSquared
This commit is contained in:
@@ -30,6 +30,18 @@ ol.Ellipsoid = function(a, flattening) {
|
|||||||
*/
|
*/
|
||||||
this.b = this.a * (1 - this.flattening);
|
this.b = this.a * (1 - this.flattening);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @const
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.eSquared = 2 * flattening - flattening * flattening;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @const
|
||||||
|
* @type {number}
|
||||||
|
*/
|
||||||
|
this.e = Math.sqrt(this.eSquared);
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user