Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 5x 5x 5x 5x 5x | const { general: { hr, angle } } = require( '../index' ) const JERUSALEM = { latitude: 31.78, longitude: 35.24, elevation: 740, zone: hr( 2 ), } const MECCA = { latitude: angle( 21, 25, 24 ), longitude: angle( 39, 49, 24 ), elevation: 298, zone: hr( 3 ), } const PARIS = { latitude: angle( 48, 50, 11 ), longitude: angle( 2, 20, 15 ), elevation: 27, zone: hr( 1 ), } module.exports = { JERUSALEM, MECCA, PARIS, } |