forked from sjcporter/CapabilityMaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SPARQL query for indexing VIVO
229 lines (221 loc) · 7.61 KB
/
SPARQL query for indexing VIVO
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
PREFIX owl: <http://www.w3.org/2002/07/owl#>
PREFIX vitro: <http://vitro.mannlib.cornell.edu/ns/vitro/0.7#>
PREFIX bibo: <http://purl.org/ontology/bibo/>
PREFIX fae: <http://www.findanexpert.unimelb.edu.au/ontology/>
PREFIX vitro-public: <http://vitro.mannlib.cornell.edu/ns/vitro/public#>
PREFIX vivo: <http://vivoweb.org/ontology/core#>
PREFIX fb: <http://www.funnelback.com/ontology/>
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX fn: <http://www.w3.org/2005/xpath-functions#>
CONSTRUCT {?person fb:url ?url;
fb:publication ?publicationLabel;
fb:agreement ?agreementLabel ;
fb:overview ?overview ;
fb:researchOverview ?researchOverview ;
foaf:firstName ?firstName;
foaf:lastName ?lastName;
fb:org ?orgLabel ;
fb:internationalLinkage ?internationalLinkageLabel ;
fb:editor ?editorRoleLabel ;
fb:exhibition ?exhibitionLabel;
fb:performance ?performanceLabel;
fb:curatedExhibition ?curatedExhibition ;
fb:mediaOnly ?mediaOnly ;
fb:subjectArea ?subjectAreaLabel ;
fb:homepage ?homepage;
fae:availableForSupervision ?supervision;
fae:gradResearchAddress ?gradResearchAddress;
vivo:geographicFocus ?countryLabel;
fae:supervisorStatement ?supervision;
fb:imageURL ?thumbnailURL;
vivo:phoneNumber ?phoneNumber;
vivo:faxNumber ?fax;
vivo:email ?email;
fb:location ?location;
rdfs:label ?personLabel.
}
WHERE {
{
{
?person a vivo:FacultyMember .
?person vivo:authorInAuthorship ?authorShip .
?authorShip vivo:linkedInformationResource ?publication .
?publication rdfs:label ?publicationLabel.
}
UNION
{
?person a vivo:FacultyMember .
?person vivo:hasInvestigatorRole ?role.
?role vivo:roleContributesTo ?agreement .
?agreement rdfs:label ?agreementLabel.
}
UNION
{
?person rdfs:label ?personLabel.
?person a vivo:FacultyMember.
}
UNION
{
?person foaf:firstName ?firstName
}
UNION
{
?person foaf:lastName ?lastName
}
UNION
{
?person vivo:researchOverview ?researchOverview
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:overview ?overview
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:personInPosition ?position .
?position vivo:positionInOrganization ?org .
?org rdfs:label ?orgLabel
}
UNION
{
?person a vivo:FacultyMember.
?person fae:internationalLinkageRole ?role.
?role vivo:roleIn ?internationalLinkage .
?internationalLinkage rdfs:label ?internationalLinkageLabel.
}
UNION
{
?person a vivo:FacultyMember.
?person fae:internationalLinkageRole ?role.
?role vivo:roleIn ?internationalLinkage .
?internationalLinkage vivo:hasGeographicLocation ?country.
?country rdfs:label ?countryLabel.
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:geographicFocus ?country.
?country rdfs:label ?countryLabel.
}
UNION
{
?person a vivo:FacultyMember.
?role vivo:editorRoleOf ?person.
?role rdfs:label ?editorRoleLabel.
}
UNION
{
?person a vivo:FacultyMember.
?person fae:hasExhibitorRole ?role.
?role fae:exhibitorRoleIn ?exhibition.
?exhibition rdfs:label ?exhibitionLabel.
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:email ?email
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:faxNumber ?fax
}
UNION
{
?person a vivo:FacultyMember.
?person vivo:phoneNumber ?phoneNumber
}
UNION
{
?person a vivo:FacultyMember.
?person fae:hasPerformerRole ?role.
?role fae:performerRoleIn ?performance.
?performance rdfs:label ?performanceLabel.
}
UNION
{
?person a vivo:FacultyMember.
?person fae:hasCuratorRole ?role.
?role fae:curatorRoleIn ?exhibition.
?exhibition rdfs:label ?curatedExhibitionLabel.
}
UNION
{
?person a vivo:FacultyMember .
?person vivo:hasSubjectArea ?subjectArea.
{
GRAPH <http://vitro.mannlib.cornell.edu/filegraph/abox/for.n3>
{?subjectArea rdfs:label ?subjectAreaLabel}
}
UNION
{
GRAPH <http://vitro.mannlib.cornell.edu/filegraph/abox/seo2008.n3>
{?subjectArea rdfs:label ?subjectAreaLabel}
}
UNION
{
GRAPH <http://vitro.mannlib.cornell.edu/filegraph/abox/seo.n3>
{?subjectArea rdfs:label ?subjectAreaLabel}
}
UNION
{
GRAPH <http://vitro.mannlib.cornell.edu/filegraph/abox/rfcd.n3>
{?subjectArea rdfs:label ?subjectAreaLabel}
}
}
UNION
{
?person a vivo:FacultyMember.
?person fae:hasMediaOnlyContact ?mediaOnly
}
UNION
{
?person a vivo:FacultyMember.
?person fae:homepage ?homepage
}
UNION
{
?person a vivo:FacultyMember.
?person fae:availableForSupervision ?supervision
}
UNION
{
?person a vivo:FacultyMember.
?person fae:supervisorStatement ?supervision
}
UNION
{
?person a vivo:FacultyMember.
?person fae:gradResearchAddress ?gradResearchAddress
}
UNION
{
?person a vivo:FacultyMember.
?person vitro-public:mainImage ?mainImage.
?mainImage vitro-public:thumbnailImage ?thumbnailImage.
?thumbnailImage vitro-public:directDownloadUrl ?thumbnailURL
}
# UNION
# {
# ?person vivo:mainImage ?mainImage.
# ?mainImage vitro-public:thumbnail ?thumbnail.
# ?thumbnail vitro-public:directDownloadUrl ?thumbnailURL.
# }
UNION
{
?person a vivo:FacultyMember.
?person fae:hasWorkLocation ?room.
?room rdfs:label ?roomLabel.
?room vivo:roomWithinBuilding ?building.
?building rdfs:label ?buildingLabel.
?building vivo:geographicallyWithin ?region.
?region rdfs:label ?regionLabel.
LET(?location := fn:concat(?roomLabel,'<br/>',?buildingLabel,'<br/>',?regoinLabel))
}
LET(?url := str(?person)) .
}
}