1. 程式人生 > >Map the Debris(freecodecamp高級算法8)

Map the Debris(freecodecamp高級算法8)

map 個數 spa -i math ear 圓周率 元素 ret

Map the Debris

返回一個數組,其內容是把原數組中對應元素的平均海拔轉換成其對應的軌道周期.

原數組中會包含格式化的對象內容,像這樣 {name: ‘name‘, avgAlt: avgAlt}.

以軌道高度計算軌道周期的公式技術分享

技術分享a:軌道的半長軸(m),μ = GM

求得的值應該是一個與其最接近的整數,軌道是以地球為基準的.

地球半徑是 6367.4447 kilometers, 地球的GM值是 398600.4418, 圓周率為Math.PI

function orbitalPeriod(arr) {
                    var GM = 398600.4418
; var earthRadius = 6367.4447;var retArr = []; function calOrbital(avgAlt){ return Math.round(2 * Math.PI * (Math.sqrt(Math.pow(avgAlt + earthRadius,3)/GM))); //return Math.round(Math.pow(((4*(Math.pow(Math.PI, 2)) * Math.pow((avgAlt+earthRadius), 3))/GM), 0.5));
} for(var i=0;i<arr.length;i++){ var obj = {}; obj.name = arr[i].name; obj.orbitalPeriod = calOrbital(arr[i].avgAlt); retArr.push(obj); }
return retArr; } orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}]);

Map the Debris(freecodecamp高級算法8)