EllipsoidGeodesic-0f41968b.js 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541
  1. /**
  2. * Cesium - https://github.com/CesiumGS/cesium
  3. *
  4. * Copyright 2011-2020 Cesium Contributors
  5. *
  6. * Licensed under the Apache License, Version 2.0 (the "License");
  7. * you may not use this file except in compliance with the License.
  8. * You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. *
  18. * Columbus View (Pat. Pend.)
  19. *
  20. * Portions licensed separately.
  21. * See https://github.com/CesiumGS/cesium/blob/master/LICENSE.md for full licensing details.
  22. */
  23. define(['exports', './when-54c2dc71', './Check-6c0211bc', './Math-1124a290', './Cartesian2-33d2657c'], function (exports, when, Check, _Math, Cartesian2) { 'use strict';
  24. function setConstants(ellipsoidGeodesic) {
  25. var uSquared = ellipsoidGeodesic._uSquared;
  26. var a = ellipsoidGeodesic._ellipsoid.maximumRadius;
  27. var b = ellipsoidGeodesic._ellipsoid.minimumRadius;
  28. var f = (a - b) / a;
  29. var cosineHeading = Math.cos(ellipsoidGeodesic._startHeading);
  30. var sineHeading = Math.sin(ellipsoidGeodesic._startHeading);
  31. var tanU = (1 - f) * Math.tan(ellipsoidGeodesic._start.latitude);
  32. var cosineU = 1.0 / Math.sqrt(1.0 + tanU * tanU);
  33. var sineU = cosineU * tanU;
  34. var sigma = Math.atan2(tanU, cosineHeading);
  35. var sineAlpha = cosineU * sineHeading;
  36. var sineSquaredAlpha = sineAlpha * sineAlpha;
  37. var cosineSquaredAlpha = 1.0 - sineSquaredAlpha;
  38. var cosineAlpha = Math.sqrt(cosineSquaredAlpha);
  39. var u2Over4 = uSquared / 4.0;
  40. var u4Over16 = u2Over4 * u2Over4;
  41. var u6Over64 = u4Over16 * u2Over4;
  42. var u8Over256 = u4Over16 * u4Over16;
  43. var a0 =
  44. 1.0 +
  45. u2Over4 -
  46. (3.0 * u4Over16) / 4.0 +
  47. (5.0 * u6Over64) / 4.0 -
  48. (175.0 * u8Over256) / 64.0;
  49. var a1 = 1.0 - u2Over4 + (15.0 * u4Over16) / 8.0 - (35.0 * u6Over64) / 8.0;
  50. var a2 = 1.0 - 3.0 * u2Over4 + (35.0 * u4Over16) / 4.0;
  51. var a3 = 1.0 - 5.0 * u2Over4;
  52. var distanceRatio =
  53. a0 * sigma -
  54. (a1 * Math.sin(2.0 * sigma) * u2Over4) / 2.0 -
  55. (a2 * Math.sin(4.0 * sigma) * u4Over16) / 16.0 -
  56. (a3 * Math.sin(6.0 * sigma) * u6Over64) / 48.0 -
  57. (Math.sin(8.0 * sigma) * 5.0 * u8Over256) / 512;
  58. var constants = ellipsoidGeodesic._constants;
  59. constants.a = a;
  60. constants.b = b;
  61. constants.f = f;
  62. constants.cosineHeading = cosineHeading;
  63. constants.sineHeading = sineHeading;
  64. constants.tanU = tanU;
  65. constants.cosineU = cosineU;
  66. constants.sineU = sineU;
  67. constants.sigma = sigma;
  68. constants.sineAlpha = sineAlpha;
  69. constants.sineSquaredAlpha = sineSquaredAlpha;
  70. constants.cosineSquaredAlpha = cosineSquaredAlpha;
  71. constants.cosineAlpha = cosineAlpha;
  72. constants.u2Over4 = u2Over4;
  73. constants.u4Over16 = u4Over16;
  74. constants.u6Over64 = u6Over64;
  75. constants.u8Over256 = u8Over256;
  76. constants.a0 = a0;
  77. constants.a1 = a1;
  78. constants.a2 = a2;
  79. constants.a3 = a3;
  80. constants.distanceRatio = distanceRatio;
  81. }
  82. function computeC(f, cosineSquaredAlpha) {
  83. return (
  84. (f * cosineSquaredAlpha * (4.0 + f * (4.0 - 3.0 * cosineSquaredAlpha))) /
  85. 16.0
  86. );
  87. }
  88. function computeDeltaLambda(
  89. f,
  90. sineAlpha,
  91. cosineSquaredAlpha,
  92. sigma,
  93. sineSigma,
  94. cosineSigma,
  95. cosineTwiceSigmaMidpoint
  96. ) {
  97. var C = computeC(f, cosineSquaredAlpha);
  98. return (
  99. (1.0 - C) *
  100. f *
  101. sineAlpha *
  102. (sigma +
  103. C *
  104. sineSigma *
  105. (cosineTwiceSigmaMidpoint +
  106. C *
  107. cosineSigma *
  108. (2.0 * cosineTwiceSigmaMidpoint * cosineTwiceSigmaMidpoint - 1.0)))
  109. );
  110. }
  111. function vincentyInverseFormula(
  112. ellipsoidGeodesic,
  113. major,
  114. minor,
  115. firstLongitude,
  116. firstLatitude,
  117. secondLongitude,
  118. secondLatitude
  119. ) {
  120. var eff = (major - minor) / major;
  121. var l = secondLongitude - firstLongitude;
  122. var u1 = Math.atan((1 - eff) * Math.tan(firstLatitude));
  123. var u2 = Math.atan((1 - eff) * Math.tan(secondLatitude));
  124. var cosineU1 = Math.cos(u1);
  125. var sineU1 = Math.sin(u1);
  126. var cosineU2 = Math.cos(u2);
  127. var sineU2 = Math.sin(u2);
  128. var cc = cosineU1 * cosineU2;
  129. var cs = cosineU1 * sineU2;
  130. var ss = sineU1 * sineU2;
  131. var sc = sineU1 * cosineU2;
  132. var lambda = l;
  133. var lambdaDot = _Math.CesiumMath.TWO_PI;
  134. var cosineLambda = Math.cos(lambda);
  135. var sineLambda = Math.sin(lambda);
  136. var sigma;
  137. var cosineSigma;
  138. var sineSigma;
  139. var cosineSquaredAlpha;
  140. var cosineTwiceSigmaMidpoint;
  141. do {
  142. cosineLambda = Math.cos(lambda);
  143. sineLambda = Math.sin(lambda);
  144. var temp = cs - sc * cosineLambda;
  145. sineSigma = Math.sqrt(
  146. cosineU2 * cosineU2 * sineLambda * sineLambda + temp * temp
  147. );
  148. cosineSigma = ss + cc * cosineLambda;
  149. sigma = Math.atan2(sineSigma, cosineSigma);
  150. var sineAlpha;
  151. if (sineSigma === 0.0) {
  152. sineAlpha = 0.0;
  153. cosineSquaredAlpha = 1.0;
  154. } else {
  155. sineAlpha = (cc * sineLambda) / sineSigma;
  156. cosineSquaredAlpha = 1.0 - sineAlpha * sineAlpha;
  157. }
  158. lambdaDot = lambda;
  159. cosineTwiceSigmaMidpoint = cosineSigma - (2.0 * ss) / cosineSquaredAlpha;
  160. if (isNaN(cosineTwiceSigmaMidpoint)) {
  161. cosineTwiceSigmaMidpoint = 0.0;
  162. }
  163. lambda =
  164. l +
  165. computeDeltaLambda(
  166. eff,
  167. sineAlpha,
  168. cosineSquaredAlpha,
  169. sigma,
  170. sineSigma,
  171. cosineSigma,
  172. cosineTwiceSigmaMidpoint
  173. );
  174. } while (Math.abs(lambda - lambdaDot) > _Math.CesiumMath.EPSILON12);
  175. var uSquared =
  176. (cosineSquaredAlpha * (major * major - minor * minor)) / (minor * minor);
  177. var A =
  178. 1.0 +
  179. (uSquared *
  180. (4096.0 + uSquared * (uSquared * (320.0 - 175.0 * uSquared) - 768.0))) /
  181. 16384.0;
  182. var B =
  183. (uSquared *
  184. (256.0 + uSquared * (uSquared * (74.0 - 47.0 * uSquared) - 128.0))) /
  185. 1024.0;
  186. var cosineSquaredTwiceSigmaMidpoint =
  187. cosineTwiceSigmaMidpoint * cosineTwiceSigmaMidpoint;
  188. var deltaSigma =
  189. B *
  190. sineSigma *
  191. (cosineTwiceSigmaMidpoint +
  192. (B *
  193. (cosineSigma * (2.0 * cosineSquaredTwiceSigmaMidpoint - 1.0) -
  194. (B *
  195. cosineTwiceSigmaMidpoint *
  196. (4.0 * sineSigma * sineSigma - 3.0) *
  197. (4.0 * cosineSquaredTwiceSigmaMidpoint - 3.0)) /
  198. 6.0)) /
  199. 4.0);
  200. var distance = minor * A * (sigma - deltaSigma);
  201. var startHeading = Math.atan2(cosineU2 * sineLambda, cs - sc * cosineLambda);
  202. var endHeading = Math.atan2(cosineU1 * sineLambda, cs * cosineLambda - sc);
  203. ellipsoidGeodesic._distance = distance;
  204. ellipsoidGeodesic._startHeading = startHeading;
  205. ellipsoidGeodesic._endHeading = endHeading;
  206. ellipsoidGeodesic._uSquared = uSquared;
  207. }
  208. var scratchCart1 = new Cartesian2.Cartesian3();
  209. var scratchCart2 = new Cartesian2.Cartesian3();
  210. function computeProperties(ellipsoidGeodesic, start, end, ellipsoid) {
  211. var firstCartesian = Cartesian2.Cartesian3.normalize(
  212. ellipsoid.cartographicToCartesian(start, scratchCart2),
  213. scratchCart1
  214. );
  215. var lastCartesian = Cartesian2.Cartesian3.normalize(
  216. ellipsoid.cartographicToCartesian(end, scratchCart2),
  217. scratchCart2
  218. );
  219. //>>includeStart('debug', pragmas.debug);
  220. Check.Check.typeOf.number.greaterThanOrEquals(
  221. "value",
  222. Math.abs(
  223. Math.abs(Cartesian2.Cartesian3.angleBetween(firstCartesian, lastCartesian)) - Math.PI
  224. ),
  225. 0.0125
  226. );
  227. //>>includeEnd('debug');
  228. vincentyInverseFormula(
  229. ellipsoidGeodesic,
  230. ellipsoid.maximumRadius,
  231. ellipsoid.minimumRadius,
  232. start.longitude,
  233. start.latitude,
  234. end.longitude,
  235. end.latitude
  236. );
  237. ellipsoidGeodesic._start = Cartesian2.Cartographic.clone(
  238. start,
  239. ellipsoidGeodesic._start
  240. );
  241. ellipsoidGeodesic._end = Cartesian2.Cartographic.clone(end, ellipsoidGeodesic._end);
  242. ellipsoidGeodesic._start.height = 0;
  243. ellipsoidGeodesic._end.height = 0;
  244. setConstants(ellipsoidGeodesic);
  245. }
  246. /**
  247. * Initializes a geodesic on the ellipsoid connecting the two provided planetodetic points.
  248. *
  249. * @alias EllipsoidGeodesic
  250. * @constructor
  251. *
  252. * @param {Cartographic} [start] The initial planetodetic point on the path.
  253. * @param {Cartographic} [end] The final planetodetic point on the path.
  254. * @param {Ellipsoid} [ellipsoid=Ellipsoid.WGS84] The ellipsoid on which the geodesic lies.
  255. */
  256. function EllipsoidGeodesic(start, end, ellipsoid) {
  257. var e = when.defaultValue(ellipsoid, Cartesian2.Ellipsoid.WGS84);
  258. this._ellipsoid = e;
  259. this._start = new Cartesian2.Cartographic();
  260. this._end = new Cartesian2.Cartographic();
  261. this._constants = {};
  262. this._startHeading = undefined;
  263. this._endHeading = undefined;
  264. this._distance = undefined;
  265. this._uSquared = undefined;
  266. if (when.defined(start) && when.defined(end)) {
  267. computeProperties(this, start, end, e);
  268. }
  269. }
  270. Object.defineProperties(EllipsoidGeodesic.prototype, {
  271. /**
  272. * Gets the ellipsoid.
  273. * @memberof EllipsoidGeodesic.prototype
  274. * @type {Ellipsoid}
  275. * @readonly
  276. */
  277. ellipsoid: {
  278. get: function () {
  279. return this._ellipsoid;
  280. },
  281. },
  282. /**
  283. * Gets the surface distance between the start and end point
  284. * @memberof EllipsoidGeodesic.prototype
  285. * @type {Number}
  286. * @readonly
  287. */
  288. surfaceDistance: {
  289. get: function () {
  290. //>>includeStart('debug', pragmas.debug);
  291. Check.Check.defined("distance", this._distance);
  292. //>>includeEnd('debug');
  293. return this._distance;
  294. },
  295. },
  296. /**
  297. * Gets the initial planetodetic point on the path.
  298. * @memberof EllipsoidGeodesic.prototype
  299. * @type {Cartographic}
  300. * @readonly
  301. */
  302. start: {
  303. get: function () {
  304. return this._start;
  305. },
  306. },
  307. /**
  308. * Gets the final planetodetic point on the path.
  309. * @memberof EllipsoidGeodesic.prototype
  310. * @type {Cartographic}
  311. * @readonly
  312. */
  313. end: {
  314. get: function () {
  315. return this._end;
  316. },
  317. },
  318. /**
  319. * Gets the heading at the initial point.
  320. * @memberof EllipsoidGeodesic.prototype
  321. * @type {Number}
  322. * @readonly
  323. */
  324. startHeading: {
  325. get: function () {
  326. //>>includeStart('debug', pragmas.debug);
  327. Check.Check.defined("distance", this._distance);
  328. //>>includeEnd('debug');
  329. return this._startHeading;
  330. },
  331. },
  332. /**
  333. * Gets the heading at the final point.
  334. * @memberof EllipsoidGeodesic.prototype
  335. * @type {Number}
  336. * @readonly
  337. */
  338. endHeading: {
  339. get: function () {
  340. //>>includeStart('debug', pragmas.debug);
  341. Check.Check.defined("distance", this._distance);
  342. //>>includeEnd('debug');
  343. return this._endHeading;
  344. },
  345. },
  346. });
  347. /**
  348. * Sets the start and end points of the geodesic
  349. *
  350. * @param {Cartographic} start The initial planetodetic point on the path.
  351. * @param {Cartographic} end The final planetodetic point on the path.
  352. */
  353. EllipsoidGeodesic.prototype.setEndPoints = function (start, end) {
  354. //>>includeStart('debug', pragmas.debug);
  355. Check.Check.defined("start", start);
  356. Check.Check.defined("end", end);
  357. //>>includeEnd('debug');
  358. computeProperties(this, start, end, this._ellipsoid);
  359. };
  360. /**
  361. * Provides the location of a point at the indicated portion along the geodesic.
  362. *
  363. * @param {Number} fraction The portion of the distance between the initial and final points.
  364. * @param {Cartographic} [result] The object in which to store the result.
  365. * @returns {Cartographic} The location of the point along the geodesic.
  366. */
  367. EllipsoidGeodesic.prototype.interpolateUsingFraction = function (
  368. fraction,
  369. result
  370. ) {
  371. return this.interpolateUsingSurfaceDistance(
  372. this._distance * fraction,
  373. result
  374. );
  375. };
  376. /**
  377. * Provides the location of a point at the indicated distance along the geodesic.
  378. *
  379. * @param {Number} distance The distance from the inital point to the point of interest along the geodesic
  380. * @param {Cartographic} [result] The object in which to store the result.
  381. * @returns {Cartographic} The location of the point along the geodesic.
  382. *
  383. * @exception {DeveloperError} start and end must be set before calling function interpolateUsingSurfaceDistance
  384. */
  385. EllipsoidGeodesic.prototype.interpolateUsingSurfaceDistance = function (
  386. distance,
  387. result
  388. ) {
  389. //>>includeStart('debug', pragmas.debug);
  390. Check.Check.defined("distance", this._distance);
  391. //>>includeEnd('debug');
  392. var constants = this._constants;
  393. var s = constants.distanceRatio + distance / constants.b;
  394. var cosine2S = Math.cos(2.0 * s);
  395. var cosine4S = Math.cos(4.0 * s);
  396. var cosine6S = Math.cos(6.0 * s);
  397. var sine2S = Math.sin(2.0 * s);
  398. var sine4S = Math.sin(4.0 * s);
  399. var sine6S = Math.sin(6.0 * s);
  400. var sine8S = Math.sin(8.0 * s);
  401. var s2 = s * s;
  402. var s3 = s * s2;
  403. var u8Over256 = constants.u8Over256;
  404. var u2Over4 = constants.u2Over4;
  405. var u6Over64 = constants.u6Over64;
  406. var u4Over16 = constants.u4Over16;
  407. var sigma =
  408. (2.0 * s3 * u8Over256 * cosine2S) / 3.0 +
  409. s *
  410. (1.0 -
  411. u2Over4 +
  412. (7.0 * u4Over16) / 4.0 -
  413. (15.0 * u6Over64) / 4.0 +
  414. (579.0 * u8Over256) / 64.0 -
  415. (u4Over16 - (15.0 * u6Over64) / 4.0 + (187.0 * u8Over256) / 16.0) *
  416. cosine2S -
  417. ((5.0 * u6Over64) / 4.0 - (115.0 * u8Over256) / 16.0) * cosine4S -
  418. (29.0 * u8Over256 * cosine6S) / 16.0) +
  419. (u2Over4 / 2.0 -
  420. u4Over16 +
  421. (71.0 * u6Over64) / 32.0 -
  422. (85.0 * u8Over256) / 16.0) *
  423. sine2S +
  424. ((5.0 * u4Over16) / 16.0 -
  425. (5.0 * u6Over64) / 4.0 +
  426. (383.0 * u8Over256) / 96.0) *
  427. sine4S -
  428. s2 *
  429. ((u6Over64 - (11.0 * u8Over256) / 2.0) * sine2S +
  430. (5.0 * u8Over256 * sine4S) / 2.0) +
  431. ((29.0 * u6Over64) / 96.0 - (29.0 * u8Over256) / 16.0) * sine6S +
  432. (539.0 * u8Over256 * sine8S) / 1536.0;
  433. var theta = Math.asin(Math.sin(sigma) * constants.cosineAlpha);
  434. var latitude = Math.atan((constants.a / constants.b) * Math.tan(theta));
  435. // Redefine in terms of relative argument of latitude.
  436. sigma = sigma - constants.sigma;
  437. var cosineTwiceSigmaMidpoint = Math.cos(2.0 * constants.sigma + sigma);
  438. var sineSigma = Math.sin(sigma);
  439. var cosineSigma = Math.cos(sigma);
  440. var cc = constants.cosineU * cosineSigma;
  441. var ss = constants.sineU * sineSigma;
  442. var lambda = Math.atan2(
  443. sineSigma * constants.sineHeading,
  444. cc - ss * constants.cosineHeading
  445. );
  446. var l =
  447. lambda -
  448. computeDeltaLambda(
  449. constants.f,
  450. constants.sineAlpha,
  451. constants.cosineSquaredAlpha,
  452. sigma,
  453. sineSigma,
  454. cosineSigma,
  455. cosineTwiceSigmaMidpoint
  456. );
  457. if (when.defined(result)) {
  458. result.longitude = this._start.longitude + l;
  459. result.latitude = latitude;
  460. result.height = 0.0;
  461. return result;
  462. }
  463. return new Cartesian2.Cartographic(this._start.longitude + l, latitude, 0.0);
  464. };
  465. exports.EllipsoidGeodesic = EllipsoidGeodesic;
  466. });
  467. //# sourceMappingURL=EllipsoidGeodesic-0f41968b.js.map