2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: af4afb223120f7348cdfc9fd
|
|
|
|
title: Map the Debris
|
|
|
|
challengeType: 5
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 16021
|
2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
## Description
|
|
|
|
<section id='description'>
|
|
|
|
Return a new array that transforms the elements' average altitude into their orbital periods (in seconds).
|
|
|
|
The array will contain objects in the format <code>{name: 'name', avgAlt: avgAlt}</code>.
|
|
|
|
You can read about orbital periods <a href="http://en.wikipedia.org/wiki/Orbital_period" target='_blank'>on Wikipedia</a>.
|
|
|
|
The values should be rounded to the nearest whole number. The body being orbited is Earth.
|
|
|
|
The radius of the earth is 6367.4447 kilometers, and the GM value of earth is 398600.4418 km<sup>3</sup>s<sup>-2</sup>.
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Instructions
|
|
|
|
<section id='instructions'>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Tests
|
|
|
|
<section id='tests'>
|
|
|
|
|
|
|
|
```yml
|
2018-10-04 14:37:37 +01:00
|
|
|
tests:
|
|
|
|
- text: '<code>orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}])</code> should return <code>[{name: "sputnik", orbitalPeriod: 86400}]</code>.'
|
2019-07-27 21:16:04 -07:00
|
|
|
testString: 'assert.deepEqual(orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}]), [{name: "sputnik", orbitalPeriod: 86400}]);'
|
2018-10-04 14:37:37 +01:00
|
|
|
- text: '<code>orbitalPeriod([{name: "iss", avgAlt: 413.6}, {name: "hubble", avgAlt: 556.7}, {name: "moon", avgAlt: 378632.553}])</code> should return <code>[{name : "iss", orbitalPeriod: 5557}, {name: "hubble", orbitalPeriod: 5734}, {name: "moon", orbitalPeriod: 2377399}]</code>.'
|
2019-07-27 21:16:04 -07:00
|
|
|
testString: 'assert.deepEqual(orbitalPeriod([{name: "iss", avgAlt: 413.6}, {name: "hubble", avgAlt: 556.7}, {name: "moon", avgAlt: 378632.553}]), [{name : "iss", orbitalPeriod: 5557}, {name: "hubble", orbitalPeriod: 5734}, {name: "moon", orbitalPeriod: 2377399}]);'
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Challenge Seed
|
|
|
|
<section id='challengeSeed'>
|
|
|
|
|
|
|
|
<div id='js-seed'>
|
|
|
|
|
|
|
|
```js
|
|
|
|
function orbitalPeriod(arr) {
|
|
|
|
var GM = 398600.4418;
|
|
|
|
var earthRadius = 6367.4447;
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
orbitalPeriod([{name : "sputnik", avgAlt : 35873.5553}]);
|
|
|
|
```
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
## Solution
|
|
|
|
<section id='solution'>
|
|
|
|
|
|
|
|
|
|
|
|
```js
|
|
|
|
function orbitalPeriod(arr) {
|
|
|
|
var GM = 398600.4418;
|
|
|
|
var earthRadius = 6367.4447;
|
2018-10-08 01:01:53 +01:00
|
|
|
var TAU = 2 * Math.PI;
|
2018-09-30 23:01:58 +01:00
|
|
|
return arr.map(function(obj) {
|
|
|
|
return {
|
|
|
|
name: obj.name,
|
|
|
|
orbitalPeriod: Math.round(TAU * Math.sqrt(Math.pow(obj.avgAlt+earthRadius, 3)/GM))
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
orbitalPeriod([{name : "sputkin", avgAlt : 35873.5553}]);
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
</section>
|