Skip to content

Commit 5b54723

Browse files
authored
Add historic=aircraft preset (#1556)
1 parent caebe1a commit 5b54723

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed

data/fields/aircraft/model.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"key": "aircraft:model",
3+
"type": "combo",
4+
"label": "Aircraft Model"
5+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"key": "aircraft:model:wikidata",
3+
"keys": [
4+
"aircraft:model:wikidata",
5+
"aircraft:model:wikipedia"
6+
],
7+
"type": "wikidata",
8+
"label": "Aircraft Model Wikidata"
9+
}

data/fields/aircraft/type.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"key": "aircraft:type",
3+
"type": "combo",
4+
"label": "Type",
5+
"strings": {
6+
"options": {
7+
"military": "Military",
8+
"helicopter": "Helicopter",
9+
"airliner": "Airliner",
10+
"jet": "Jet",
11+
"fixed_wing": "Fixed Wing",
12+
"cargo": "Cargo",
13+
"glider": "Glider"
14+
}
15+
}
16+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"key": "manufacturer:wikidata",
3+
"keys": [
4+
"manufacturer:wikidata",
5+
"manufacturer:wikipedia"
6+
],
7+
"type": "wikidata",
8+
"label": "Manufacturer Wikidata"
9+
}
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"icon": "roentgen-plane",
3+
"fields": [
4+
"name",
5+
"start_date",
6+
"aircraft/type",
7+
"aircraft/model"
8+
],
9+
"moreFields": [
10+
"ref",
11+
"aircraft/model/wikidata",
12+
"manufacturer",
13+
"manufacturer/wikidata",
14+
"description"
15+
],
16+
"geometry": [
17+
"point",
18+
"area"
19+
],
20+
"tags": {
21+
"historic": "aircraft"
22+
},
23+
"terms": [
24+
"gate guardian"
25+
],
26+
"name": "Historic Aircraft"
27+
}

0 commit comments

Comments
 (0)