Wikidata:WikiProject Rowing/competition classes

WikiProject Rowing
WikiProject start pageparticipantsstatisticsl10n

Structural items

edit

A rowing regatta generally hosts one or many events of different competition classes. Distinction is made by at least the following criteria:

Some aspects of rowing events are typically not considered to be part of the competition class:

  • racing distance (Q126017): varies from ~250 m to more than 100 km; event distance is a property of an event
  • certain communities (debatable, not yet set up): restrictions to college rowers, novices, club teams, etc.

Scope

edit

We can now define competition classes for rowing events, and here we focus on those that are held (or have been held) at the following rowing competitions:

How to tag

edit

Competition class items in rowing are defined as follows (the item men's eight (Q26214799) may serve as an example):

How to use

edit

Competition class items can then be used to define the competition class of rowing events with the competition class (P2094) property. An example would be:

Rowing event items with a missing competition class (P2094) claim can be found with this query.

Due to the hierarchical competition class (P2094) structure it is possible to query events according to specific criteria. For instance “all lightweight rowing events” regardless of gender, age, and boat class can be queried like this:

SELECT ?item WHERE { ?item wdt:P31 wd:Q21246076; wdt:P2094* wd:Q26211786 }
Try it!

Already tagged

edit

An overview of already existing competition classes can be found by this query:

# rowing competition classes
SELECT ?item ?itemLabel ?itemShortName ?itemDescription ?ageclassLabel ?genderLabel ?weightclassLabel ?boatclassLabel ?boatclassShortName WHERE {
  ?item wdt:P31 wd:Q22936940; wdt:P641/wdt:P279* wd:Q159354; wdt:P1813 ?itemShortName .
  OPTIONAL { ?item p:P2094 [ ps:P2094 ?ageclass; pq:P1013 wd:Q185836 ] }
  OPTIONAL { ?item p:P2094 [ ps:P2094 ?gender; pq:P1013 wd:Q48277 ] }
  OPTIONAL { ?item p:P2094 [ ps:P2094 ?weightclass; pq:P1013 wd:Q11423 ] }
  OPTIONAL { ?item p:P2094 [ ps:P2094 ?boatclass; pq:P1013 wd:Q26211803 ] . ?boatclass wdt:P1813 ?boatclassShortName }
  SERVICE wikibase:label { bd:serviceParam wikibase:language 'en' }
}
Try it!