Wikidata:WikiProject Aviation/Lists

From Wikidata
Jump to navigation Jump to search

Home

 

Items

 

Properties

 

Reference Lists

 


List of airports named after people[edit]

The following query uses these:

  • Properties: instance of (P31)  View with Reasonator View with SQID, subclass of (P279)  View with Reasonator View with SQID, country (P17)  View with Reasonator View with SQID, coordinate location (P625)  View with Reasonator View with SQID, named after (P138)  View with Reasonator View with SQID
    #Airports named after people
    #2016-12-20, Jura1
    SELECT ?countryLabel ?item ?itemLabel ?itemDescription ?person ?personLabel ?personDescription (sample(?coor) as ?coor)
    {
      	?item wdt:P31/wdt:P279* wd:Q1248784 .
        ?item p:P138/ps:P138 ?person .
      	?person wdt:P31 wd:Q5 . 
      	?item wdt:P17 ?country .
      	OPTIONAL { ?item wdt:P625 ?coor } .
    	SERVICE wikibase:label { bd:serviceParam wikibase:language "en" . }
    }
    GROUP BY ?countryLabel ?item ?itemLabel ?itemDescription ?person ?personLabel ?personDescription
    ORDER BY ?countryLabel ?itemLabel
    LIMIT 1000
    

Map of aerodromes in a country[edit]

The following query uses these:

Features: map (Q24515275)  View with Reasonator View with SQID

#Airfields
#Airfields
#defaultView:Map
SELECT ?item ?itemLabel (sample(?coordinate_location) as ?coord) WHERE {
  ?item (p:P31/ps:P31/wdt:P279*) wd:Q62447.
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE], en". }
  ?item wdt:P17 wd:Q155.
  MINUS { ?item wdt:P576 _:b2. }                                # remove items with P576 (dissolved, abolished or demolished) as a main property
  OPTIONAL { ?item wdt:P625 ?coordinate_location. }
} group by ?item ?itemLabel