Skip to content

Commit

Permalink
Fix indentation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
wielandb committed Jul 6, 2023
1 parent d7f7a1d commit 49ca5ea
Showing 1 changed file with 63 additions and 64 deletions.
127 changes: 63 additions & 64 deletions assets/datasets/question_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -2662,79 +2662,78 @@
"text": "Welche Verkehrsmittel halten an dieser Haltestelle?"
},
"answer": {
"type": "MultiList",
"input": [
{
"name": "Bus",
"osm_tags": {
"bus": "yes"
}
},
{
"name": "Straßenbahn",
"osm_tags": {
"tram": "yes"
}
},
{
"name": "Zug",
"osm_tags": {
"train": "yes"
}
},
{
"name": "Stadtbahn",
"description": "Eine Stadtbahn ist eine Zwischenstufe zwischen Straßenbahn und traditionellen Zügen. Sie verbindet oft ländliche Gebiete mit der Stadt und sind hochfluriger als Straßenbahnen.",
"osm_tags": {
"light_rail": "yes"
}
},
{
"name":"U-Bahn",
"osm_tags": {
"subway": "yes"
}

},
"type": "MultiList",
"input": [
{
"name": "Bus",
"osm_tags": {
"bus": "yes"
}
},
{
"name": "Straßenbahn",
"osm_tags": {
"tram": "yes"
}
},
{
"name": "Zug",
"osm_tags": {
"train": "yes"
}
},
{
"name": "Stadtbahn",
"description": "Eine Stadtbahn ist eine Zwischenstufe zwischen Straßenbahn und traditionellen Zügen. Sie verbindet oft ländliche Gebiete mit der Stadt und sind hochfluriger als Straßenbahnen.",
"osm_tags": {
"light_rail": "yes"
}
},
{
"name":"U-Bahn",
"osm_tags": {
"subway": "yes"
}
},
{
"name": "Einschienenbahn",
"description": "Eine Einschienenbahn fährt meistens über der Straßenebene und hat keine sichtbaren Räder.",
"osm_tags": {
"monorail": "yes"
"monorail": "yes"
}
}
],
"constructor": {
"bus": ["COALESCE", "$input"],
"tram": ["COALESCE", "$input"],
"train": ["COALESCE", "$input"],
"light_rail": ["COALESCE", "$input"]
"constructor": {
"bus": ["COALESCE", "$input"],
"tram": ["COALESCE", "$input"],
"train": ["COALESCE", "$input"],
"light_rail": ["COALESCE", "$input"]
}
},
"conditions": [
{
"osm_tags": {
"public_transport": "platform",
"bus": false,
"tram": false,
"light_rail": false,
"monorail": false,
"train": false,
"trolleybus": false,
"ferry": false,
"subway": false
},
"!osm_tags":{
"highway": "bus_stop"
},
"!parent": [
{
"osm_tags": {
"public_transport": "platform"
}
"conditions": [
{
"osm_tags": {
"public_transport": "platform",
"bus": false,
"tram": false,
"light_rail": false,
"monorail": false,
"train": false,
"trolleybus": false,
"ferry": false,
"subway": false
},
"!osm_tags":{
"highway": "bus_stop"
},
"!parent": [
{
"osm_tags": {
"public_transport": "platform"
}
]
}
]
}
]
}
]
}
]

0 comments on commit 49ca5ea

Please sign in to comment.