american-art / ccma

Colby College Museum of Art
Creative Commons Zero v1.0 Universal
3 stars 1 forks source link

omit CCMA actor null dates #17

Closed VladimirAlexiev closed 7 years ago

VladimirAlexiev commented 7 years ago

http://data.americanartcollaborative.org/page/ccma/constituent/451 has http://data.americanartcollaborative.org/page/ccma/constituent/451/birth but no useful data in that Birth.

If he's got a birth date, emit it. Else skip the Birth. Same for Death

bsnikhila commented 7 years ago

It has the birth date as 1931

VladimirAlexiev commented 7 years ago

Checked for Birth/Death without timespan http://yasgui.org/short/SJkXZbY3e

SELECT *  {
  {?x a crm:E67_Birth} union {?x a crm:E69_Death}
  filter not exists {?x crm:P4_has_time-span ?y}
}

No results.

Checked for timespans without class http://yasgui.org/short/rJfob-t3l

SELECT *  {
  ?x crm:P4_has_time-span ?y
  filter not exists {?y a crm:E52_Time-Span}
}

No results.

Checked for timespan without dates http://yasgui.org/short/r1_Ixbthg:

select * {
  ?x a crm:E52_Time-Span.
  filter not exists {?x crm:P82a_begin_of_the_begin ?y}
  filter not exists {?x crm:P82_at_some_time_within ?y}
  filter regex(str(?x),"ccma")
}

Finds 88 CCMA URLs, but they are all object production (not agent birth) and they got rdfs:label showing a variety of dates, so not easy to parse.

Think we can close this, thanks!