정의
$radiansToDegrees라디안 단위로 측정된 입력 값을 각도로 변환합니다.
$radiansToDegrees의 구문은 다음과 같습니다:{ $radiansToDegrees: <expression> } $radiansToDegreestakes any valid expression that resolves to a number.$radiansToDegrees기본값double$radiansToDegrees128으로<expression>는 값을 로 반환합니다. 는 128가 비트 십진수 값으로 해석되는 한 값을 비트 십진수로 반환할 수도 있습니다.표현식에 대한 자세한 내용은 표현식을 참조하세요 .
행동
null, NaN 및 +/- Infinity
If the argument resolves to a value of null or refers to a field that is missing, $radiansToDegrees returns null. If the argument resolves to NaN, $radiansToDegrees returns NaN. If the argument resolves to negative or positive infinity, $radiansToDegrees negative or positive infinity respectively.
예시 | 결과 |
|---|---|
|
|
|
|
|
|
|
|
예시
trigonometry 컬렉션에는 라디안 단위로 측정된 세 개의 각도가 포함된 문서가 포함되어 있습니다.
{ "angle_a" : Decimal128("0.9272952180016122324285124629224290"), "angle_b" : Decimal128("0.6435011087932843868028092287173227"), "angle_c" : Decimal128("1.570796326794896619231321691639752") }
The following aggregation operation uses the $radiansToDegrees expression to convert each value to its degree equivalent and add them to the input document using the $addFields pipeline stage.
db.trigangles.aggregate([ { $addFields: { "angle_a_deg" : { $radiansToDegrees : "$angle_a"}, "angle_b_deg" : { $radiansToDegrees : "$angle_b"}, "angle_c_deg" : { $radiansToDegrees : "$angle_c"} } } ])
연산은 다음 문서를 반환합니다.
{ "_id" : ObjectId("5c50aec71c75c59232b3ede4"), "angle_a" : Decimal128("0.9272952180016122324285124629224290"), "angle_b" : Decimal128("0.6435011087932843868028092287173227"), "angle_c" : Decimal128("1.570796326794896619231321691639752"), "angle_a_deg" : Decimal128("53.13010235415597870314438744090659"), "angle_b_deg" : Decimal128("36.86989764584402129685561255909341"), "angle_c_deg" : Decimal128("90.00000000000000000000000000000000") }
angle_aangle_b, 및 는 angle_c 128비트 십진수로 저장되므로 의 $radiansToDegrees 출력은 128비트 십진수입니다.