Updating the BHL Partner Call invites to reflect change to BHL Community Call, in alignment with the Transition Communication Plan
BHL Community Calls
:
Partners, Staff, and Working Group Members
Starting in May, the BHL Partner Calls will become Community Calls. These “all-hands” call will be open to partners, staff, and working group members and will provide a space for broad information sharing, cross-team
engagement, and transparent communication. We will continue offering the calls at two times each month through at least the end of 2025 to support broad participation across time zones.
──────────
Colleen Funkhouser is inviting you to a scheduled Zoom meeting.
Join Zoom Meeting
https://smithsonian.zoom.us/j/89954946762?pwd=PJxkQW2NxXO5fsBZtQQjwIif53q1t…
Meeting ID: 899 5494 6762
Passcode: 115689
One tap mobile
+13017158592,,89954946762#,,,,*115689# US (Washington DC)
+13052241968,,89954946762#,,,,*115689# US
Dial by your location
+1 301 715 8592 US (Washington DC)
+1 305 224 1968 US
+1 309 205 3325 US
+1 312 626 6799 US (Chicago)
+1 646 876 9923 US (New York)
+1 646 931 3860 US
+1 507 473 4847 US
+1 564 217 2000 US
+1 669 444 9171 US
+1 669 900 6833 US (San Jose)
+1 689 278 1000 US
+1 719 359 4580 US
+1 253 205 0468 US
+1 253 215 8782 US (Tacoma)
+1 346 248 7799 US (Houston)
+1 360 209 5623 US
+1 386 347 5053 US
+1 408 638 0968 US (San Jose)
Meeting ID: 899 5494 6762
Passcode: 115689
Find your local number: https://smithsonian.zoom.us/u/k6s5o3ey5
Join by SIP
89954946762(a)zoomcrc.com
Join by H.323
144.195.19.161 (US West)
206.247.11.121 (US East)
115.114.131.7 (India Mumbai)
115.114.115.7 (India Hyderabad)
159.124.15.191 (Amsterdam Netherlands)
159.124.47.249 (Germany)
159.124.104.213 (Australia Sydney)
159.124.74.212 (Australia Melbourne)
170.114.180.219 (Singapore)
64.211.144.160 (Brazil)
159.124.132.243 (Mexico)
159.124.168.213 (Canada Toronto)
159.124.196.25 (Canada Vancouver)
170.114.194.163 (Japan Tokyo)
147.124.100.25 (Japan Osaka)
Meeting ID: 899 5494 6762
Passcode: 115689
By participating in this Zoom Meeting, I agree that:
• I am 18 or older.
• The Smithsonian may record this Meeting and use such recordings in whole or part for its purposes, in any media, publicly, and without compensation to me.
• If I chose to use the meeting’s interactive features (e.g., chat, or sharing a feed from my device’s camera or speaker), I will take care to share only what is mine to share and that I am comfortable (i) sharing publicly, (ii) having captured on any recordings of the Meeting, and (iii) used by the Smithsonian. My use of the these features shall be civil and courteous (failing to meet this expectation risks removal per https://www.si.edu/termsofuse ).
• I waive any expectation of privacy in, and will hold the Smithsonian harmless from any cost or liability of any kind arising from, my participation in this meeting.
──────────
Please help out a sparql newbie!
I have the following query to select identifiers for BHL Titles:
SELECT DISTINCT ?TitleID ?Wikidata ?OCLC ?ISSN ?Linking_ISSN ?ISBN13 ?ISBN10 ?Coden ?DLC ?NLM ?TL2 ?DOI WHERE {
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
{
SELECT DISTINCT ?item WHERE {
?item p:P4327 ?statement0.
?statement0 ps:P4327 _:anyValueP4327.
}
}
BIND(REPLACE(STR(?item), "http://www.wikidata.org/entity/", "") AS ?Wikidata )
OPTIONAL { ?item wdt:P4327 ?TitleID. }
OPTIONAL { ?item wdt:P243 ?OCLC. }
OPTIONAL { ?item wdt:P236 ?ISSN. }
OPTIONAL { ?item wdt:P7363 ?Linking_ISSN. }
OPTIONAL { ?item wdt:P212 ?ISBN13. }
OPTIONAL { ?item wdt:P957 ?ISBN10. }
OPTIONAL { ?item wdt:P1159 ?Coden. }
OPTIONAL { ?item wdt:P244 ?DLC. }
OPTIONAL { ?item wdt:P1055 ?NLM. }
OPTIONAL { ?item wdt:P5878 ?TL2. }
OPTIONAL { ?item wdt:P356 ?DOI. }
}
It seems to work, as it returns about 170K unique identifiers for about 64K titles.
However, after adding those identifiers to a BHL database table where I could compare the data to what is already in BHL, I found that some items are missing from the sparql result.
For example, Q51512257 is associated with BHL Title 88, Q54792313 with BHL TItle 100, and Q51399752 with BHL Title 1231. The query above does not return any of those wikidata items. I modified the query to return just one of those wikidata items...
SELECT DISTINCT ?item ?TitleID ?Wikidata ?OCLC ?ISSN ?Linking_ISSN ?ISBN13 ?ISBN10 ?Coden ?DLC ?NLM ?TL2 ?DOI WHERE {
BIND(wd:Q51512257 AS ?item)
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE]". }
BIND(REPLACE(STR(?item), "http://www.wikidata.org/entity/", "") AS ?Wikidata )
OPTIONAL { ?item wdt:P4327 ?TitleID. }
OPTIONAL { ?item wdt:P243 ?OCLC. }
OPTIONAL { ?item wdt:P236 ?ISSN. }
OPTIONAL { ?item wdt:P7363 ?Linking_ISSN. }
OPTIONAL { ?item wdt:P212 ?ISBN13. }
OPTIONAL { ?item wdt:P957 ?ISBN10. }
OPTIONAL { ?item wdt:P1159 ?Coden. }
OPTIONAL { ?item wdt:P244 ?DLC. }
OPTIONAL { ?item wdt:P1055 ?NLM. }
OPTIONAL { ?item wdt:P5878 ?TL2. }
OPTIONAL { ?item wdt:P356 ?DOI. }
}
... and it did return the item, but no identifier values. Viewing https://www.wikidata.org/wiki/Q51512257 shows that the item does in fact have a DOI, BHL Bibliography ID (Title ID), and OCLC Control Number.
So, what is going wrong? Is there something wrong with my query, or is there something unusual about those items? (Or, I guess... both... is there something unusual that my query is not accounting for?)
Thanks in advance!
MIKE