-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatapackage.json
More file actions
181 lines (181 loc) · 4.91 KB
/
datapackage.json
File metadata and controls
181 lines (181 loc) · 4.91 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "fr-code-officiel-geographique",
"title": "Code officiel géographique",
"sources": [{
"name": "INSEE : Code Officiel Géographique",
"web": "http://www.insee.fr/fr/methodes/nomenclatures/cog/default.asp"
}],
"license": "",
"maintainers": [{
"name": "Lexman",
"web": "http://github.com/abonnasseau"
}],
"resources": [
{
"path": "data/fr-departements.tsv",
"dialect": {
"delimiter": "\t"
},
"schema": {
"fields": [
{
"name": "departement_id",
"title": "Departement Code",
"description": "The 2 letters code for the departement",
"type": "string"
},
{
"name": "departement_name",
"title": "Departement Name",
"description": "Name of the departement",
"type": "string"
},
{
"name": "article",
"title": "Article",
"description": "Article to display before the name",
"type": "string"
},
{
"name": "charniere",
"title": "Charniere",
"description": "The article to display when using possessive",
"type": "string"
},
{
"name": "region",
"title": "Region",
"description": "Id of the region the departement belongs to",
"type": "integer"
},
{
"name": "chef_lieu",
"title": "Chef Lieu",
"description": "Id of the principal administrative city",
"type": "integer"
}
]
}
},
{
"path": "data/fr-regions.tsv",
"dialect": {
"delimiter": "\t"
},
"schema": {
"fields": [
{
"name": "region_id",
"title": "Region Code",
"description": "The code for the region",
"type": "string"
},
{
"name": "region_name",
"title": "Region Name",
"description": "Name of the departement",
"type": "string"
},
{
"name": "article",
"title": "Article",
"description": "Article to display before the name",
"type": "string"
},
{
"name": "charniere",
"title": "Charniere",
"description": "The article to display when using possessive",
"type": "string"
},
{
"name": "chef_lieu",
"title": "Chef Lieu",
"description": "Id of the principal administrative city",
"type": "integer"
}
]
}
},
{
"path": "data/fr-cantons.tsv",
"dialect": {
"delimiter": "\t"
},
"schema": {
"fields": [
{
"name": "canton_id",
"title": "Canton Code",
"description": "The code for the canton",
"type": "string"
},
{
"name": "canton_name",
"title": "Canton Name",
"description": "Name of the canton",
"type": "string"
},
{
"name": "type_article",
"title": "Type of article",
"description": "The type of article to display before the name",
"type": "integer"
},
{
"name": "region",
"title": "Region",
"description": "Id of of the region where the canton lies",
"type": "string"
},
{
"name": "departement",
"title": "Departement",
"description": "Id of of the departement where the canton lies",
"type": "string"
}
]
}
},
{
"path": "data/fr-communes.tsv",
"dialect": {
"delimiter": "\t"
},
"schema": {
"fields": [
{
"name": "code_insee",
"title": "Code INSEE",
"description": "The id for the commune, given by the INSEE commonly known as code INSEE",
"type": "string"
},
{
"name": "town_name",
"title": "Town Name",
"description": "Name of the town",
"type": "string"
},
{
"name": "type_article",
"title": "Type of article",
"description": "The type of article to display before the name",
"type": "integer"
},
{
"name": "region",
"title": "Region",
"description": "Id of of the region where the town lies",
"type": "string"
},
{
"name": "departement",
"title": "Departement",
"description": "Id of of the departement where the town lies",
"type": "string"
}
]
}
}
]
}