mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
11 lines
345 B
Plaintext
11 lines
345 B
Plaintext
{
|
|
"name": "array_sum",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Returns the sum of arithmetic values in an array. Non numeric values in the array are ignored.",
|
|
"arguments": [ {"arg":"array","description":"an array"} ],
|
|
"examples": [
|
|
{ "expression":"array_sum(array(0,1,39.4,1.6,'a'))", "returns":"42.0"}
|
|
]
|
|
}
|