UNPKG
aqmt
Version:
latest (2.0.1)
2.0.1
2.0.0
Air Quality Toolkit
github.com/portothree/aqmt
portothree/aqmt
aqmt
/
utils.js
13 lines
(10 loc)
•
174 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
function
deg2rad
(
degrees
) {
return
degrees * (
Math
.
PI
/
180
); }
function
rad2deg
(
radians
) {
return
radians * (
180
/
Math
.
PI
); }
module
.
exports
= { deg2rad, rad2deg, };