Skip to content

Commit 412ff9f

Browse files
committed
Add some common frequency synonyms
1 parent 73cca30 commit 412ff9f

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

hdx/data/dataset.py

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,17 @@ class Dataset(HDXObject):
4646
'every month': '30',
4747
'every three months': '90',
4848
'every six months': '180',
49-
'every year': '365'
49+
'every year': '365',
50+
'daily': '1',
51+
'weekly': '7',
52+
'fortnightly': '14',
53+
'every other week': '14',
54+
'monthly': '30',
55+
'quarterly': '90',
56+
'semiannually': '180',
57+
'semiyearly': '180',
58+
'annually': '365',
59+
'yearly': '365'
5060
}
5161

5262
def __init__(self, configuration: Configuration, initial_data: Optional[dict] = None,

0 commit comments

Comments
 (0)