- Reference >
- Operators >
- Aggregation Pipeline Operators >
- $atan2 (aggregation)
$atan2 (aggregation)¶
-
$atan2¶ New in version 4.2.
Returns the inverse tangent (arc tangent) of
y / x, whereyandxare the first and second values passed to the expression respectively.$atan2has the following syntax:$atan2takes any valid expression that resolves to a number.$atan2returns values in radians. Use$radiansToDegreesoperator to convert the output value from radians to degrees.By default
$atan2returns values as adouble.$atan2can also return values as a 128-bit decimal as long as the<expression>resolves to a 128-bit decimal value.For more information on expressions, see Expressions.
Behavior¶
null and NaN¶
If either argument given to $atan2 is null, the expression returns
null. If either argument is NaN, the expression returns NaN.
If one argument is null and the other is NaN, the expression returns
null.
| Example | Results |
|---|---|
{ $atan2: [ NaN, <value> ] } |
NaN |
{ $atan2: [ <value>, NaN ] } |
NaN |
{ $atan2: [ null, <value> ] } |
null |
{ $atan2: [ <value>, null ] } |
null |
{ $atan2: [ NaN, null ] } |
null |
{ $atan2: [ null, NaN ] } |
null |
Example¶
- Inverse Tangent of Value in Degrees
- Inverse Tangent of Value in Radians
The trigonometry collection contains a document that
stores three sides of a right-angle triangle:
The following aggregation operation uses the
$atan2 expression to calculate the angle adjacent
to side_a and add it to the input document using the
$addFields pipeline stage.
The $radiansToDegrees expression converts the
radian value returned by $atan2 to the equivalent
value in degrees.
The command returns the following output:
Since side_b and side_a are stored as
128-bit decimals, the output of
$atan2 is a 128-bit decimal.
The trigonometry collection contains a document that
stores three sides of a right-angle triangle:
The following aggregation operation uses the
$atan2 expression to calculate the angle adjacent
to side_a and add it to the input document using the
$addFields pipeline stage.
The command returns the following output:
Since side_b and side_a are stored as
128-bit decimals, the output of
$atan2 is a 128-bit decimal.