-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathCOBISS.js
1945 lines (1915 loc) · 47.3 KB
/
COBISS.js
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"translatorID": "ceace65b-4daf-4200-a617-a6bf24c75607",
"label": "COBISS",
"creator": "Brendan O'Connell",
"target": "^https?://plus\\.cobiss\\.net/cobiss",
"minVersion": "5.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2023-08-17 18:57:34"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2023 Brendan O'Connell
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, url) {
// single items may end in an id number that is 6 digits or more
var itemIDURL = /\d{6,}$/;
// detailed view of single items ends in /#full
var fullRecordURL = /#full$/;
if (url.match(itemIDURL) || url.match(fullRecordURL)) {
// capture type of material directly from the catalog page, e.g. "undergraduate thesis"
var typeOfMaterial = doc.querySelector("button#add-biblioentry-to-shelf").getAttribute("data-mat-type");
if (typeOfMaterial) {
// use translateItemType function to translate catalog material type into a Zotero
// item type, e.g "thesis"
var detectItemType = translateItemType(typeOfMaterial);
if (detectItemType) {
return detectItemType;
}
// if a catalog item type isn't contained in the hash in translateItemType function,
// return Zotero item type 'book', which is by far the most common item type in this catalog.
else {
return 'book';
}
}
}
else if (getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('a.title.value');
for (let row of rows) {
let href = row.href;
let title = row.innerText;
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
function constructRISURL(url) {
// catalog page URL: https://plus.cobiss.net/cobiss/si/sl/bib/107937536
// RIS URL: https://plus.cobiss.net/cobiss/si/sl/bib/risCit/107937536
// capture first part of URL, e.g. https://plus.cobiss.net/cobiss/si/sl/bib/
const firstRegex = /^(.*?)\/bib\//;
let firstUrl = url.match(firstRegex)[0];
// capture item ID, e.g. /92020483
const secondRegex = /\/([^/]+)$/;
let secondUrl = url.match(secondRegex)[0];
// outputs correct RIS URL structure
let risURL = firstUrl + "risCit" + secondUrl;
return risURL;
}
function constructEnglishURL(url) {
// default catalog page URL: https://plus.cobiss.net/cobiss/si/sl/bib/107937536
// page with English metadata: https://plus.cobiss.net/cobiss/si/en/bib/107937536
// most COBISS catalogs follow the format where the language code is two characters e.g. "sl"
// except ones with three languages, e.g.: https://plus.cobiss.net/cobiss/cg/cnr_cyrl/bib/20926212
// where there are language codes for english, latin montenegrin, and cyrillic montenegrin
const firstPartRegex = /https:\/\/plus\.cobiss\.net\/cobiss\/[a-z]{2}\//;
const endPartRegex = /\/bib\/\S*/;
const firstPart = url.match(firstPartRegex)[0];
const endPart = url.match(endPartRegex)[0];
var englishURL = firstPart + "en" + endPart;
return englishURL;
}
// in the catalog, too many items are classified in RIS as either BOOK or ELEC,
// including many reports, ebooks, etc, that thus are incorrectly assigned itemType "book" or "webpage"
// when we rely on Zotero RIS translator. This map assigns more accurate itemTypes
// based on "type of material" classification in English catalog, instead of relying on RIS.
// this function also assigns itemType for catalog items with no RIS.
function translateItemType(englishCatalogItemType) {
var catalogItemTypeHash = new Map([
['undergraduate thesis', 'thesis'],
['proceedings', 'conferencePaper'],
['novel', 'book'],
['science fiction (prose)', 'book'],
['book', 'book'],
['handbook', 'book'],
['proceedings of conference contributions', 'conferencePaper'],
['professional monograph', 'report'],
['scientific monograph', 'book'],
['textbook', 'book'],
['e-book', 'book'],
['picture book', 'book'],
['treatise, study', 'report'],
['catalogue', 'book'],
['master\u0027s thesis', 'thesis'],
['picture book', 'book'],
['short stories', 'book'],
['research report', 'report'],
['poetry', 'book'],
['dissertation', 'thesis'],
['picture book', 'book'],
['offprint', 'magazineArticle'],
['guide-book', 'book'],
['expertise', 'hearing'], // court testimony, e.g. https://plus.cobiss.net/cobiss/si/en/bib/94791683
['profess. monogr', 'report'],
['project documentation', 'report'],
['antiquarian material', 'book'], // mostly books, e.g. https://plus.cobiss.net/cobiss/si/en/bib/7543093
['other lit.forms', 'book'],
['drama', 'book'],
['strip cartoon', 'book'],
['documentary lit', 'book'],
['encyclopedia', 'book'],
['exercise book', 'book'],
['educational material', 'book'],
['review', 'report'],
['statistics', 'report'],
['legislation', 'statute'],
['essay', 'book'],
['final paper', 'thesis'],
['standard', 'book'],
['specialist thesis', 'book'],
['aphorisms, proverbs', 'book'],
['humour, satire, parody', 'book'],
['examin. paper', 'report'],
['annual', 'report'],
['yearly', 'report'],
['documentary lit', 'book'],
['folk literature', 'book'],
['patent', 'patent'],
['regulations', 'report'],
['conf. materials', 'conferencePaper'],
['radio play', 'book'],
['letters', 'book'],
['literature survey/review', 'report'],
['statute', 'statute'],
['matura paper', 'thesis'],
['seminar paper', 'thesis'],
['habilitation', 'thesis'],
['dramaturgical paper', 'thesis'],
['article, component part', 'journalArticle'],
['e-article', 'journalArticle'],
['periodical', 'book'],
['monogr. series', 'book'],
['audio CD', 'audioRecording'],
['audio cassette', 'audioRecording'],
['disc', 'audioRecording'],
['music, sound recording', 'audioRecording'],
['audio DVD', 'audioRecording'],
['printed and manuscript music', 'audioRecording'],
['graphics', 'artwork'],
['poster', 'artwork'],
['photograph', 'artwork'],
['e-video', 'videoRecording'],
['video DVD', 'videoRecording'],
['video cassette', 'videoRecording'],
['blu-ray', 'videoRecording'],
['motion picture', 'videoRecording'],
['map', 'map'],
['atlas', 'map'],
['electronic resource', 'webpage'],
['computer CD, DVD, USB', 'computerProgram'],
['article, component part ', 'journalArticle']
// there are likely other catalog item types in COBISS,
// which could be added to this hash later if they're being
// imported with the wrong Zotero item type
]);
return (catalogItemTypeHash.get(englishCatalogItemType));
}
async function doWeb(doc, url) {
if (detectWeb(doc, url) == 'multiple') {
let items = await Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc, url);
}
}
async function scrape(doc, url = doc.location.href) {
var finalItemType = "";
// if url matches /en/bib/, then skip constructing englishURL
if (url.match("/en/bib")) {
// get catalog item type from page, then translate to Zotero item type using translateItemType()
var nativeEnglishItemType = doc.querySelector("button#add-biblioentry-to-shelf").getAttribute("data-mat-type");
finalItemType = translateItemType(nativeEnglishItemType);
}
else {
// replace specific language in bib record URL with english to detect item type
var englishURL = constructEnglishURL(url);
var englishDocument = await requestDocument(englishURL);
var englishItemType = englishDocument.querySelector("button#add-biblioentry-to-shelf").getAttribute("data-mat-type");
finalItemType = translateItemType(englishItemType);
}
if (doc.getElementById("unpaywall-link")) {
var pdfLink = doc.getElementById("unpaywall-link").href;
}
if (doc.getElementById('showUrlHref')) {
var fullTextLink = doc.getElementById('showUrlHref').href;
}
const risURL = constructRISURL(url);
const risText = await requestText(risURL);
// case for catalog items with RIS (95%+ of items)
if (risText) {
// RIS always has an extraneous OK## at the beginning, remove it
let fixedRisText = risText.replace(/^OK##/, '');
// PY tag sometimes has 'cop.' at the end - remove it or it makes the date parser return '0000' for some reason
fixedRisText = fixedRisText.replace(/^(PY\s*-\s*.+)cop\.$/m, '$1');
const translator = Zotero.loadTranslator('import');
translator.setTranslator('32d59d2d-b65a-4da4-b0a3-bdd3cfb979e7'); // RIS
translator.setString(fixedRisText);
translator.setHandler('itemDone', (_obj, item) => {
if (pdfLink) {
item.attachments.push({
url: pdfLink,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
else if (fullTextLink) {
if (fullTextLink.match(/.pdf$/)) {
item.attachments.push({
url: fullTextLink,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
else {
item.attachments.push({
url: fullTextLink,
title: 'Full Text',
mimeType: 'text/html'
});
}
}
// if finalItemType is found from the catalog page, override itemType from RIS with it.
// if "Type of material" from catalog page isn't in catalogItemTypeHash, finalItemType will return as undefined.
// in this case, default Type from RIS will remain.
if (finalItemType) {
item.itemType = finalItemType;
}
// some items have tags in RIS KW field and are captured by
// RIS translator, e.g. https://plus.cobiss.net/cobiss/si/en/bib/78691587.
// don't add dupliicate tags from the page to these items.
if (item.tags.length === 0) {
// other items e.g. https://plus.cobiss.net/cobiss/si/sl/bib/82789891 have tags,
// but they're not in the RIS. In this case, add tags from catalog page.
var pageTags = doc.querySelectorAll('a[href^="bib/search?c=su="]');
for (let tagElem of pageTags) {
item.tags.push(tagElem.innerText);
}
}
item.url = url;
item.complete();
});
await translator.translate();
}
// case for catalog items with no RIS (remaining 5% or so of items) where we can't use the RIS import translator
else {
// construct correct fullRecord URL from basic catalog URL or #full URL
// base URL: https://plus.cobiss.net/cobiss/si/sl/bib/93266179
// JSON URL: https://plus.cobiss.net/cobiss/si/sl/bib/COBIB/93266179/full
var jsonUrl = url.replace(/\/bib\/(\d+)/, "/bib/COBIB/$1/full");
var fullRecord = await requestJSON(jsonUrl);
var noRISItem = new Zotero.Item(finalItemType);
noRISItem.title = fullRecord.titleCard.value;
var creatorsJson = fullRecord.author700701.value;
var brSlashRegex = /<br\/>/;
var creators = creatorsJson.split(brSlashRegex).map(value => value.trim());
for (let creator of creators) {
// creator role isn't defined in metadata, so assign everyone "author" role
let role = "author";
noRISItem.creators.push(ZU.cleanAuthor(creator, role, true));
}
if (fullRecord.languageCard) noRISItem.language = fullRecord.languageCard.value;
if (fullRecord.publishDate) noRISItem.date = fullRecord.publishDate.value;
if (fullRecord.edition) noRISItem.edition = fullRecord.edition.value;
if (fullRecord.isbnCard) noRISItem.ISBN = fullRecord.isbnCard.value;
if (fullRecord.publisherCard) {
var placePublisher = fullRecord.publisherCard.value;
// example string for publisherCard.value: "Ljubljana : Intelego, 2022"
const colonIndex = placePublisher.indexOf(":");
const commaIndex = placePublisher.indexOf(",");
noRISItem.place = placePublisher.slice(0, colonIndex).trim();
noRISItem.publisher = placePublisher.slice(colonIndex + 2, commaIndex).trim();
}
if (fullRecord.notesCard) {
var notesJson = fullRecord.notesCard.value;
var brRegex = /<br>/;
var notes = notesJson.split(brRegex).map(value => value.trim());
for (let note of notes) {
noRISItem.notes.push(note);
}
}
// add subjects from JSON as tags. There are three fields that contain tags,
// sgcHeadings, otherSubjects and subjectCardUncon with
// different separators. sgcHeadings and otherSubjects use <br>, subjectCardUncon uses /
if (fullRecord.sgcHeadings) {
var sgcHeadingsJson = fullRecord.sgcHeadings.value;
var sgcHeadingTags = sgcHeadingsJson.split(brRegex).map(value => value.trim());
for (let sgcHeadingTag of sgcHeadingTags) {
noRISItem.tags.push(sgcHeadingTag);
}
}
if (fullRecord.otherSubjects) {
var otherSubjectsJson = fullRecord.otherSubjects.value;
var otherSubjectsTags = otherSubjectsJson.split(brRegex).map(value => value.trim());
for (let otherSubjectsTag of otherSubjectsTags) {
noRISItem.tags.push(otherSubjectsTag);
}
}
if (fullRecord.subjectCardUncon) {
var subjectCardUnconJson = fullRecord.subjectCardUncon.value;
const slashRegex = /\//;
var subjectCardUnconTags = subjectCardUnconJson.split(slashRegex).map(value => value.trim());
for (let subjectCardUnconTag of subjectCardUnconTags) {
noRISItem.tags.push(subjectCardUnconTag);
}
}
// add attachments to RIS items
if (pdfLink) {
noRISItem.attachments.push({
url: pdfLink,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
else if (fullTextLink) {
if (fullTextLink.match(/.pdf$/)) {
noRISItem.attachments.push({
url: fullTextLink,
title: 'Full Text PDF',
mimeType: 'application/pdf'
});
}
else {
noRISItem.attachments.push({
url: fullTextLink,
title: 'Full Text',
mimeType: 'text/html'
});
}
}
noRISItem.complete();
}
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/92020483",
"items": [
{
"itemType": "videoRecording",
"title": "Nauk o barvah po Goetheju. DVD 2/3, Poglobitev vsebine nauka o barvah, še posebej poglavja \"Fizične barve\" s prikazom eksperimentov",
"creators": [
{
"lastName": "Kühl",
"firstName": "Johannes",
"creatorType": "director"
}
],
"date": "2022",
"ISBN": "9789619527542",
"libraryCatalog": "COBISS",
"place": "Hvaletinci",
"studio": "NID Sapientia",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/92020483",
"attachments": [],
"tags": [
{
"tag": "Antropozofija"
},
{
"tag": "Barve"
}
],
"notes": [
{
"note": "<p>Dialogi v slov. in nem. s konsekutivnim prevodom v slov.</p>"
},
{
"note": "<p>Tisk po naročilu</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/search?q=*&db=cobib&mat=allmaterials&cof=0_105b-p&pdfrom=01.01.2023",
"items": "multiple"
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/115256576",
"items": [
{
"itemType": "book",
"title": "Angel z zahodnega okna",
"creators": [
{
"lastName": "Meyrink",
"firstName": "Gustav",
"creatorType": "author"
}
],
"date": "2001",
"ISBN": "9789616400107",
"libraryCatalog": "COBISS",
"numPages": "2 zv. (216; 203 )",
"place": "Ljubljana",
"publisher": "Založniški atelje Blodnjak",
"series": "Zbirka Blodnjak",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/115256576",
"attachments": [],
"tags": [],
"notes": [
{
"note": "<p>Prevod dela: Der Engel vom westlichen Fenster</p>"
},
{
"note": "<p>Gustav Meyrink / Herman Hesse: str. 198-200</p>"
},
{
"note": "<p>Magični stekleni vrtovi judovske kulture / Jorge Luis Borges: str. 201-203</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/139084803",
"detectedItemType": "book",
"items": [
{
"itemType": "report",
"title": "Poročilo analiz vzorcev odpadnih vod na vsebnost prepovedanih in dovoljenih drog na področju centralne čistilne naprave Kranj (2022)",
"creators": [
{
"lastName": "Heath",
"firstName": "Ester",
"creatorType": "author"
},
{
"lastName": "Verovšek",
"firstName": "Taja",
"creatorType": "author"
}
],
"date": "2023",
"institution": "Institut Jožef Stefan",
"libraryCatalog": "COBISS",
"pages": "1 USB-ključ",
"place": "Ljubljana",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/139084803",
"attachments": [],
"tags": [
{
"tag": "dovoljene droge"
},
{
"tag": "nedovoljene droge"
},
{
"tag": "odpadne vode"
},
{
"tag": "čistilna naprava"
}
],
"notes": [
{
"note": "<p>Nasl. z nasl. zaslona</p>"
},
{
"note": "<p>Opis vira z dne 11. 1. 2023</p>"
},
{
"note": "<p>Bibliografija: str. 13</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/84534787",
"detectedItemType": "book",
"items": [
{
"itemType": "journalArticle",
"title": "Flood legislation and land policy framework of EU and non-EU countries in Southern Europe",
"creators": [
{
"lastName": "Kapović-Solomun",
"firstName": "Marijana",
"creatorType": "author"
},
{
"lastName": "Ferreira",
"firstName": "Carla S.S.",
"creatorType": "author"
},
{
"lastName": "Zupanc",
"firstName": "Vesna",
"creatorType": "author"
},
{
"lastName": "Ristić",
"firstName": "Ratko",
"creatorType": "author"
},
{
"lastName": "Drobnjak",
"firstName": "Aleksandar",
"creatorType": "author"
},
{
"lastName": "Kalantari",
"firstName": "Zahra",
"creatorType": "author"
}
],
"date": "2022",
"ISSN": "2049-1948",
"issue": "1",
"journalAbbreviation": "WIREs",
"libraryCatalog": "COBISS",
"pages": "1-14",
"publicationTitle": "WIREs",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/84534787",
"volume": "9",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "EU legislation"
},
{
"tag": "Južna Evropa"
},
{
"tag": "Southern Europe"
},
{
"tag": "floods"
},
{
"tag": "land governance"
},
{
"tag": "policy framework"
},
{
"tag": "politika"
},
{
"tag": "poplave"
},
{
"tag": "upravljanje zemljišč"
},
{
"tag": "zakonodaja EU"
}
],
"notes": [
{
"note": "<p>Nasl. z nasl. zaslona</p>"
},
{
"note": "<p>Opis vira z dne 11. 11. 2021</p>"
},
{
"note": "<p>Bibliografija: str. 12-14</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/5815649",
"detectedItemType": "book",
"items": [
{
"itemType": "thesis",
"title": "Rangiranje cest po metodologiji EuroRAP ; Elektronski vir: diplomska naloga = Rating roads using EuroRAP procedures",
"creators": [
{
"lastName": "Pešec",
"firstName": "Katja",
"creatorType": "author"
}
],
"date": "2012",
"libraryCatalog": "COBISS",
"place": "Ljubljana",
"shortTitle": "Rangiranje cest po metodologiji EuroRAP ; Elektronski vir",
"university": "[K. Pešec]",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/5815649",
"attachments": [
{
"title": "Full Text PDF",
"mimeType": "application/pdf"
}
],
"tags": [
{
"tag": "EuroRAP"
},
{
"tag": "EuroRAP"
},
{
"tag": "VSŠ"
},
{
"tag": "cesta in obcestje"
},
{
"tag": "diplomska dela"
},
{
"tag": "economic efficiency"
},
{
"tag": "ekonomska učinkovitost"
},
{
"tag": "gradbeništvo"
},
{
"tag": "graduation thesis"
},
{
"tag": "pilot project"
},
{
"tag": "pilotski projekt"
},
{
"tag": "predlagani (proti)ukrepi"
},
{
"tag": "rangiranje cest"
},
{
"tag": "road and roadside"
},
{
"tag": "star rating"
},
{
"tag": "suggested countermeasure"
}
],
"notes": [
{
"note": "<p>Diplomsko delo visokošolskega strokovnega študija gradbeništva, Prometna smer</p>"
},
{
"note": "<p>Nasl. z nasl. zaslona</p>"
},
{
"note": "<p>Publikacija v pdf formatu obsega 103 str.</p>"
},
{
"note": "<p>Bibliografija: str. 85-87</p>"
},
{
"note": "<p>Izvleček ; Abstract</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/82789891",
"detectedItemType": "book",
"items": [
{
"itemType": "conferencePaper",
"title": "Posvet Avtomatizacija strege in montaže 2021/2021 - ASM '21/22, Ljubljana, 11. 05. 2022: zbornik povzetkov s posveta",
"creators": [
{
"lastName": "Posvet Avtomatizacija strege in montaže",
"creatorType": "author",
"fieldMode": 1
},
{
"lastName": "Herakovič",
"firstName": "Niko",
"creatorType": "editor"
},
{
"lastName": "Debevec",
"firstName": "Mihael",
"creatorType": "editor"
},
{
"lastName": "Pipan",
"firstName": "Miha",
"creatorType": "editor"
},
{
"lastName": "Adrović",
"firstName": "Edo",
"creatorType": "editor"
}
],
"date": "2022",
"ISBN": "9789616980821",
"libraryCatalog": "COBISS",
"pages": "141",
"place": "Ljubljana",
"publisher": "Fakulteta za strojništvo",
"shortTitle": "Posvet Avtomatizacija strege in montaže 2021/2021 - ASM '21/22, Ljubljana, 11. 05. 2022",
"url": "https://plus.cobiss.net/cobiss/si/sl/bib/82789891",
"attachments": [],
"tags": [
{
"tag": "Avtomatizacija"
},
{
"tag": "Posvetovanja"
},
{
"tag": "Strojništvo"
}
],
"notes": [
{
"note": "<p>180 izv.</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/78691587",
"items": [
{
"itemType": "thesis",
"title": "Modeliranje obratovanja transformatorskih postaj z metodami strojnega učenja: diplomsko delo: visokošolski strokovni študijski program prve stopnje Računalništvo in informatika",
"creators": [
{
"lastName": "Čuš",
"firstName": "Tibor",
"creatorType": "author"
}
],
"date": "2022",
"libraryCatalog": "COBISS",
"numPages": "55",
"place": "Ljubljana",
"shortTitle": "Modeliranje obratovanja transformatorskih postaj z metodami strojnega učenja",
"university": "[T. Čuš]",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/78691587",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],
"tags": [
{
"tag": "computer science"
},
{
"tag": "diploma"
},
{
"tag": "diplomske naloge"
},
{
"tag": "electrical power system"
},
{
"tag": "elektroenergetski sistem"
},
{
"tag": "forecasting models"
},
{
"tag": "indikatorji preobremenitev"
},
{
"tag": "machine learning"
},
{
"tag": "napovedni modeli"
},
{
"tag": "overload indicators"
},
{
"tag": "transformer station"
},
{
"tag": "visokošolski strokovni študij"
}
],
"notes": [
{
"note": "<p>Bibliografija: str. 53-55</p>"
},
{
"note": "<p>Povzetek ; Abstract: Modeling transformer station operation with machine learning methods</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/94705155#full",
"items": [
{
"itemType": "book",
"title": "Ljubezen v pismih: dopisovanje med Felicito Koglot in Francem Pericem: Aleksandrija-Bilje: 1921-1931",
"creators": [
{
"lastName": "Koglot",
"firstName": "Felicita",
"creatorType": "author"
},
{
"lastName": "Peric",
"firstName": "Franc",
"creatorType": "author"
},
{
"lastName": "Vončina",
"firstName": "Lara",
"creatorType": "editor"
},
{
"lastName": "Orel",
"firstName": "Maja",
"creatorType": "editor"
},
{
"lastName": "Koren",
"firstName": "Manca",
"creatorType": "editor"
},
{
"lastName": "Mihurko Poniž",
"firstName": "Katja",
"creatorType": "editor"
}
],
"date": "2022",
"ISBN": "9789617025224",
"libraryCatalog": "COBISS",
"numPages": "235",
"place": "V Novi Gorici",
"publisher": "Založba Univerze",
"shortTitle": "Ljubezen v pismih",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/94705155#full",
"attachments": [],
"tags": [
{
"tag": "Primorska"
},
{
"tag": "Slovenke"
},
{
"tag": "emigracija"
},
{
"tag": "pisma"
},
{
"tag": "ženske"
}
],
"notes": [
{
"note": "<p>Potiskane notr. str. ov.</p>"
},
{
"note": "<p>250 izv.</p>"
},
{
"note": "<p>Kdo sta bila Felicita Koglot in Franc Peric in o knjižni izdaji njunega dopisovanja / Manca Koren, Maja Orel, Lara Vončina: str. 5-6</p>"
},
{
"note": "<p>Kratek oris zgodovinskih razmer v Egiptu in na Primorskem v obdobju med obema vojnama / Manca Koren: str. 185-195</p>"
},
{
"note": "<p>Franc Peric in Felicita Koglot: večkratne migracije v družinski korespondenci / Mirjam Milharčič Hladnik: str. 197-209</p>"
},
{
"note": "<p>Družinsko življenje in doživljanje aleksandrinstva v pismih / Manca Koren: str. 211-228</p>"
}
],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/78691587",
"items": [
{
"itemType": "thesis",
"title": "Modeliranje obratovanja transformatorskih postaj z metodami strojnega učenja: diplomsko delo: visokošolski strokovni študijski program prve stopnje Računalništvo in informatika",
"creators": [
{
"lastName": "Čuš",
"firstName": "Tibor",
"creatorType": "author"
}
],
"date": "2022",
"libraryCatalog": "COBISS",
"numPages": "55",
"place": "Ljubljana",
"shortTitle": "Modeliranje obratovanja transformatorskih postaj z metodami strojnega učenja",
"university": "[T. Čuš]",
"url": "https://plus.cobiss.net/cobiss/si/en/bib/78691587",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],