UNPKG
qrt
Version:
latest (10.10.1)
10.10.1
1.10.0
1.9.0
1.8.1
1.8.0
1.7.1
1.7.0
1.6.0
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.0
Air Quality Toolkit
github.com/portothree/qrt
portothree/qrt
qrt
/
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, };