$radiansToDegrees (aggregation)
On this page本页内容
Definition定义
$radiansToDegreesNew in version 4.2.4.2版新增。Converts an input value measured in radians to degrees.将以弧度测量的输入值转换为度。$radiansToDegreeshas the following syntax:具有以下语法:{ $radiansToDegrees: <expression> }$radiansToDegreestakes any valid expression that resolves to a number.采用任何解析为数字的有效表达式。By default默认情况下,$radiansToDegreesreturns values as adouble.$radiansToDegreescan also return values as a 128-bit decimal as long as the<expression>resolves to a 128-bit decimal value.$radiansToDegrees以double形式返回值。只要<expression>解析为128位十进制值,$radiansToDegrees也可以以128位十进制形式返回值。For more information on expressions, see Expressions.有关表达式的详细信息,请参阅表达式。
Behavior行为
null, NaN, and +/- Infinity
If the argument resolves to a value of 如果参数解析为null or refers to a field that is missing, $radiansToDegrees returns null. null值或引用了缺失的字段,$radiansToDegrees将返回null。If the argument resolves to 如果参数解析为NaN, $radiansToDegrees returns NaN. NaN,$radiansToDegrees将返回NaN。If the argument resolves to negative or positive infinity, 如果参数解析为负无穷大或正无穷大,则$radiansToDegrees negative or positive infinity respectively.$radiansToDegrees将分别为负无限大或正无限大。
{ $radiansToDegrees: NaN } | NaN |
{ $radiansToDegrees: null } | null |
{ $radiansToDegrees : Infinity} | Infinity |
{ $radiansToDegrees : -Infinity } | -Infinity |
Example实例
The trigonometry collection contains a document that contains three angles measured in radians:trigonometry集合包含一个文档,该文档包含以弧度测量的三个角度:
{
"angle_a" : NumberDecimal("0.9272952180016122324285124629224290"),
"angle_b" : NumberDecimal("0.6435011087932843868028092287173227"),
"angle_c" : NumberDecimal("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.$radiansToDegrees表达式将每个值转换为等效的度数,并使用$addFields管道阶段将它们添加到输入文档中。
db.trigangles.aggregate([
{
$addFields: {
"angle_a_deg" : { $radiansToDegrees : "$angle_a"},
"angle_b_deg" : { $radiansToDegrees : "$angle_b"},
"angle_c_deg" : { $radiansToDegrees : "$angle_c"}
}
}
])
The operation returns the following document:该操作返回以下文档:
{
"_id" : ObjectId("5c50aec71c75c59232b3ede4"),
"angle_a" : NumberDecimal("0.9272952180016122324285124629224290"),
"angle_b" : NumberDecimal("0.6435011087932843868028092287173227"),
"angle_c" : NumberDecimal("1.570796326794896619231321691639752"),
"angle_a_deg" : NumberDecimal("53.13010235415597870314438744090659"),
"angle_b_deg" : NumberDecimal("36.86989764584402129685561255909341"),
"angle_c_deg" : NumberDecimal("90.00000000000000000000000000000000")
}
Since 由于angle_a, angle_b, and angle_c are stored as 128-bit decimals, the output of $radiansToDegrees is a 128-bit decimal.angle_a、angle_b和angle_c存储为128位十进制,$radiansToDegrees的输出是128位十进制。