mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
17 lines
821 B
Plaintext
17 lines
821 B
Plaintext
|
{
|
||
|
"function": "month",
|
||
|
"description": "Extract the week number from a date, or the number of weeks from an interval.",
|
||
|
"variants": [
|
||
|
{ "variant": "Date variant",
|
||
|
"variant_description": "Extract the week number from a date or datetime.",
|
||
|
"arguments": [ {"arg":"date","description":"a date or datetime value"}],
|
||
|
"examples": [ { "expression":"week('2012-05-12')", "returns":"19"}] },
|
||
|
{
|
||
|
"variant": "Interval variant",
|
||
|
"variant_description": "Calculate the length in weeks of an interval.",
|
||
|
"arguments": [ {"arg":"interval","description":"interval value to return number of months from"}],
|
||
|
"examples": [ { "expression":"week(tointerval('3 weeks'))", "returns":"3"},
|
||
|
{ "expression":"week(age('2012-01-01','2010-01-01'))", "returns":"104.285"}]
|
||
|
}]
|
||
|
}
|