mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
395 B
Plaintext
19 lines
395 B
Plaintext
{
|
|
"name": "degrees",
|
|
"type": "function",
|
|
"groups": ["Math"],
|
|
"description": "Converts from radians to degrees.",
|
|
"arguments": [{
|
|
"arg": "radians",
|
|
"description": "numeric value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "degrees(3.14159)",
|
|
"returns": "180"
|
|
}, {
|
|
"expression": "degrees(1)",
|
|
"returns": "57.2958"
|
|
}],
|
|
"tags": ["converts", "degrees", "radians"]
|
|
}
|