mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
19 lines
533 B
Plaintext
19 lines
533 B
Plaintext
{
|
|
"name": "atan2",
|
|
"type": "function",
|
|
"groups": ["Math"],
|
|
"description": "Returns the inverse tangent of dy/dx by using the signs of the two arguments to determine the quadrant of the result.",
|
|
"arguments": [{
|
|
"arg": "dy",
|
|
"description": "y coordinate difference"
|
|
}, {
|
|
"arg": "dx",
|
|
"description": "x coordinate difference"
|
|
}],
|
|
"examples": [{
|
|
"expression": "atan2(1.0, 1.732)",
|
|
"returns": "0.523611477769969"
|
|
}],
|
|
"tags": ["tangent", "arguments", "signs", "angle", "inverse", "quadrant"]
|
|
}
|