ATAN2
Represents the SQLite ATAN2(Y, X) function. It computes the arc tangent of Y/X but uses the signs of both Y and X to determine the quadrant of the result.
This function returns the angle in radians between the positive X-axis and the point (X, Y).
Return
A KQLiteColumn with the result in radians.
Author
MOHAMMAD AZIM ANSARI
Parameters
y
The column representing the y-coordinate.
x
The column representing the x-coordinate.