Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Experiment: Leap Year (February) #6

Open
kgrons opened this issue Feb 5, 2020 · 0 comments
Open

Experiment: Leap Year (February) #6

kgrons opened this issue Feb 5, 2020 · 0 comments

Comments

@kgrons
Copy link
Member

kgrons commented Feb 5, 2020

Use modded OTD query below to find all performances that happen on Leap Day (Feb 29) throughout the Hall's history. Then [find & share something cool] about the results.

PREFIX dcterms: <http://purl.org/dc/terms/>
PREFIX event: <http://purl.org/NET/c4dm/event.owl#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
select ?event ?date ?title where {
    ?event a event:Event ;
       dcterms:date ?date ;
       rdfs:label ?title .
  filter (month(?date) = 02)
  filter (day(?date) = 29)
}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant