-
Notifications
You must be signed in to change notification settings - Fork 0
/
analyse_rvk_in_collections.py
148 lines (114 loc) · 5.86 KB
/
analyse_rvk_in_collections.py
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
# The MIT License
#
# Copyright 2018-2020 Hans-Georg Becker <https://orcid.org/0000-0003-0432-294X>
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
import locale
import timeit
from analyse_rvk_in_collections_sparql import GET_ALL_SHELFMARK_LABELS, GET_ALL_TITLES_IN_SHELFMARKS, \
GET_ALL_TITLES_IN_SHELFMARKS_IN_BUNDLE, GET_ALL_TITLES_IN_SHELFMARKS_IN_BUNDLE_WITH_RVK, \
GET_ALL_ISSUED_TITLES_OF_SHELFMARK, GET_ALL_ISSUED_TITLES_OF_SHELFMARK_IN_BUNDLE, \
GET_ALL_ISSUED_TITLES_OF_SHELFMARK_IN_BUNDLE_WITH_RVK
from util_sparql_client import sparql_query
START_ISSUED = 2010
END_ISSUED = 2019
def _rvk_in_collections(branch='0'):
locale.setlocale(locale.LC_ALL, '')
all_titles = sparql_query(query=GET_ALL_TITLES_IN_SHELFMARKS % branch)
all_titles_in_bundles = sparql_query(query=GET_ALL_TITLES_IN_SHELFMARKS_IN_BUNDLE % branch)
all_titles_in_bundles_with_rvk = sparql_query(query=GET_ALL_TITLES_IN_SHELFMARKS_IN_BUNDLE_WITH_RVK % branch)
results = ['collection\ttitles\tbundles\tno bundle\tquota bundles\trvk\tno rvk\tquota rvk']
for entry in all_titles:
shelfmark = entry['label']['value']
if 'EGM' not in shelfmark and 'EGZ' not in shelfmark:
cnt = int(entry['cnt']['value'])
bundles = 0
for entry1 in all_titles_in_bundles:
if entry1['label']['value'] == shelfmark:
bundles = int(entry1['cnt']['value'])
break
rvk = 0
for entry1 in all_titles_in_bundles_with_rvk:
if entry1['label']['value'] == shelfmark:
rvk = int(entry1['cnt']['value'])
break
diff_bundles = cnt - bundles
diff_rvk = cnt - rvk
quota_bundles = 0
if bundles > 0:
quota_bundles = bundles / cnt * 100
quota_rvk = 0
if rvk > 0:
quota_rvk = rvk / cnt * 100
results.append('%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s' % (
shelfmark, cnt, bundles, diff_bundles, locale.format("%.2f", quota_bundles), rvk, diff_rvk, locale.format("%.2f", quota_rvk)
))
return results
def _rvk_in_issued_by_shelfmark(branch='0'):
locale.setlocale(locale.LC_ALL, '')
SHELF_MARKS = sparql_query(query=GET_ALL_SHELFMARK_LABELS % branch)
results = ['shelfmark\tissued\ttitles\tbundles\tno bundle\tquota bundles\trvk\tno rvk\tquota rvk']
for item in SHELF_MARKS:
shelfmark = item['label']['value']
all_titles = sparql_query(query=GET_ALL_ISSUED_TITLES_OF_SHELFMARK % (branch, shelfmark, START_ISSUED, END_ISSUED))
all_titles_in_bundles = sparql_query(query=GET_ALL_ISSUED_TITLES_OF_SHELFMARK_IN_BUNDLE % (branch, shelfmark, START_ISSUED, END_ISSUED))
all_titles_in_bundles_with_rvk = sparql_query(query=GET_ALL_ISSUED_TITLES_OF_SHELFMARK_IN_BUNDLE_WITH_RVK % (branch, shelfmark, START_ISSUED, END_ISSUED))
for entry in all_titles:
try:
issued = entry['issued']['value']
cnt = int(entry['cnt']['value'])
bundles = 0
for entry1 in all_titles_in_bundles:
if entry1['issued']['value'] == issued:
bundles = int(entry1['cnt']['value'])
break
rvk = 0
for entry1 in all_titles_in_bundles_with_rvk:
if entry1['issued']['value'] == issued:
rvk = int(entry1['cnt']['value'])
break
diff_bundles = cnt - bundles
diff_rvk = cnt - rvk
quota_bundles = 0
if bundles > 0:
quota_bundles = bundles / cnt * 100
quota_rvk = 0
if rvk > 0:
quota_rvk = rvk / cnt * 100
results.append('%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s' %(
shelfmark, issued, cnt, bundles, diff_bundles, locale.format("%.2f", quota_bundles), rvk, diff_rvk, locale.format("%.2f", quota_rvk)
))
except:
print(entry)
return results
if __name__ == '__main__':
start = timeit.default_timer()
branches = ['0', '9', '10', '12']
for branch in branches:
results = _rvk_in_collections(branch=branch)
with open('data/analyse/rvk_in_signaturgruppen_DE-290-%s.tsv' % branch, 'w') as thedata:
for entry in results:
thedata.write('%s\n' % entry)
results = _rvk_in_issued_by_shelfmark(branch=branch)
with open('data/analyse/rvk_in_signaturgruppen_per_erschjahr_DE-290-%s.tsv' % branch, 'w') as thedata:
for entry in results:
thedata.write('%s\n' % entry)
stop = timeit.default_timer()
duration = stop - start
print('duration RVK data analysis for UB Dortmund collections: %s' % duration)