forked from POI-Importer/POI-Importer.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
datasets.js
38 lines (38 loc) · 834 Bytes
/
datasets.js
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
/**
* Different datasets the tool can use
*
* The first-level keys are country names, in English,
* as they will appear in the app
*
* The second level names are database identifiers.
* These ids are used in the url, so should be as short as possible
*
* The name of a database will be visible in the app, and may be localised
* The url can be a relative url, or an absolute one (starting with http:)
* Relative URLs make testing on a local server easier.
*/
var datasets = {
"Belgium":
{
"BEdl":
{
"url": "datasets/belgium-haltes-de-lijn/",
"name": "Haltes De Lijn",
},
},
"Italy": {
"ITfuel":
{
"url": "datasets/Italia-stazioni-di-servizo/",
"name": "Stazioni di servizo",
}
},
"Norway" :
{
"NOkg":
{
"url": "datasets/norge-barnehagefakta/",
"name": "Barnehagefakta",
}
}
};