forked from senegalouvert/Population-Senegal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatapackage.json
51 lines (51 loc) · 1.11 KB
/
datapackage.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "Repartition-Population-1970-2005",
"title": "Répartition de la population selon le sexe de 1970 à 2005",
"sources": [{
"name": "ANSD",
"web": "http://www.ansd.sn/publications/annuelles/population-du-Senegal/population_Senegal_1970_2005.pdf"
}],
"licenses": [
{
"id": "odc-pddl",
"url": "http://opendatacommons.org/licenses/pddl/"
}
],
"resources": [
{
"path": "/data/Repartition_population_selon_sexe_1970_2005.csv",
"schema": {
"fields": [
{
"id": "Années",
"type": "date",
"format": "yyyy"
},
{
"id": "Population totale",
"type": "number",
"description": "Total population"
},
{
"id": "Hommes",
"type": "number"
},
{
"id": "Femmes",
"type": "number"
}
]
}
}
],
"views": [
{
"id": "graph",
"type": "Graph",
"state": {
"group": "Années",
"series": [ "Population totale" ]
}
}
]
}