diff --git a/scripts/oneoffs/rdabox2jsonld.py b/scripts/oneoffs/rdabox2jsonld.py
index c51629b8b..0a4437aec 100644
--- a/scripts/oneoffs/rdabox2jsonld.py
+++ b/scripts/oneoffs/rdabox2jsonld.py
@@ -3,7 +3,7 @@
1. Download all lists from a given Box folder (here "Värdevokabulär") as a ZIP file.
2. Run this script (pipe or redirect output as desired):
- $ python scripts/rdabox2jsonld.py cache/Värdevokabulär.zip
+ $ python3 scripts/oneoffs/rdabox2jsonld.py cache/Värdevokabulär.zip | trld -ottl
"""
from urllib.parse import quote
@@ -13,7 +13,8 @@
import sys
-def convert(doc, rtype):
+def convert(fname, doc):
+ folder_id, rtype = to_folder_and_type(fname)
items = []
for block in doc['content']:
if block['type'] == 'table':
@@ -74,7 +75,7 @@ def convert(doc, rtype):
id_label = clean(label_en) or clean(label_sv)
- r_id = label_to_slug(id_label)
+ r_id = folder_id + label_to_slug(id_label)
# NOTE: related_sv is probably superfluous
# (those labels *should* already be on the targets)
@@ -153,9 +154,18 @@ def find_with_content(items):
return [item for item in items if 'content' in item]
-def to_type(fname):
- fname = fname.rsplit('/')[-1].rsplit('.')[0]
- return re.sub(r'\W', '', fname.title().replace(' ', ''))
+def to_folder_and_type(fname):
+ name = fname.rsplit('/')[-1].rsplit('.')[0].removesuffix('_')
+ name, paren, typenote = name.partition('(of an analog ')
+ if paren:
+ name = typenote.removesuffix(')') + ' ' + name
+ elif ' of ' in name:
+ kind, oftype = name.split(' of ', 1)
+ name = oftype.removesuffix('s') + ' ' + kind
+
+ rtype = re.sub(r'\W', '', name.title().replace(' ', ''))
+
+ return rtype.lower() + '/', rtype
def label_to_slug(label):
@@ -180,7 +190,7 @@ def convert_and_add_results(source, fname):
if not (doc := source.get('doc')) or 'content' not in doc:
return
- results = convert(doc, to_type(fname))
+ results = convert(fname, doc)
for key, item in results.items():
if dup := result_map.get(key):
print(
@@ -191,6 +201,7 @@ def convert_and_add_results(source, fname):
item['@type'],
file=sys.stderr
)
+ # item['@id'] += '_' + re.sub(r'[a-z]+', '', item['@type'])
result_map.update(results)
for fname in sys.argv[1:]:
@@ -205,6 +216,8 @@ def convert_and_add_results(source, fname):
source = json.load(f)
convert_and_add_results(source, fname)
+ nodes = sorted(result_map.values(), key=lambda node: (node['@type'], node['@type']))
+
doc = {
"@context": {
"@vocab": "https://id.kb.se/vocab/",
@@ -218,7 +231,7 @@ def convert_and_add_results(source, fname):
"scopeNote_sv": {"@id": "scopeNote", "@language": "sv"},
"scopeNote_en": {"@id": "scopeNote", "@language": "en"},
},
- "@graph": list(result_map.values())
+ "@graph": nodes
}
print(json.dumps(doc, indent=2, ensure_ascii=False))
diff --git a/source/rda/terms.ttl b/source/rda/terms.ttl
new file mode 100644
index 000000000..2e492525e
--- /dev/null
+++ b/source/rda/terms.ttl
@@ -0,0 +1,4371 @@
+prefix :
+base
+
+ a :AspectRatioDesignation ;
+ :prefLabel "Full screen"@en ;
+ :prefLabel "Normalbild"@sv ;
+ :altLabel "Full-screen"@en ;
+ :definition "An aspect ratio designation for an expression of a moving image work whose ratio is less than 1.5:1."@en ;
+ :definition "Bildförhållande för ett uttryck av ett verk bestående av rörlig bild vars mått är mindre än 1.5:1."@sv ;
+ :exactMatch ;
+ :note "345 #d (term)" ,
+ "(#d saknas i Formathandboken)" .
+
+ a :AspectRatioDesignation ;
+ :prefLabel "Wide screen"@en ;
+ :prefLabel "Bredbild"@sv ;
+ :altLabel "Wide-screen"@en ;
+ :definition "An aspect ratio designation for an expression of a moving image work whose ratio is equal to or greater than 1.5:1."@en ;
+ :definition "Bildförhållande för ett uttryck av ett verk bestående av rörlig bild vars mått 1.5:1 eller större"@sv ;
+ :exactMatch ;
+ :note "345 #d (term)" .
+
+ a :AspectRatioDesignation ;
+ :prefLabel "Mixed aspect ratio"@en ;
+ :prefLabel "Blandade bildförhållanden"@sv ;
+ :definition "An aspect ratio designation for an expression of a moving image work that includes multiple aspect ratios within the same expression"@en ;
+ :definition "Bildförhållande för ett uttryck av ett verk bestående av rörlig bild som omfattar flera bildförhållanden i samma uttryck."@sv ;
+ :exactMatch ;
+ :note "345 #d (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "128mo"@en ;
+ :prefLabel "128:o"@sv ;
+ :altLabel "One hundred twenty-eightmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/128 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/128 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "12mo"@en ;
+ :prefLabel "12:o"@sv ;
+ :altLabel "Duodecimo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/12 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/12 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "16mo"@en ;
+ :prefLabel "16:o"@sv ;
+ :altLabel "Decimo-sexto"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/16 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/16 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "18mo"@en ;
+ :prefLabel "18:o"@sv ;
+ :altLabel "Eighteenmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/18 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/18 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "24mo"@en ;
+ :prefLabel "24:o"@sv ;
+ :altLabel "Vigesimo-quarto"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/24 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/24 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "32mo"@en ;
+ :prefLabel "32:o"@sv ;
+ :altLabel "Trigesimo-secundo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/32 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/32 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "36mo"@en ;
+ :prefLabel "36:o"@sv ;
+ :altLabel "Thirty-sixmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/36 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/36 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "48mo"@en ;
+ :prefLabel "48:o"@sv ;
+ :altLabel "Forty-eightmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/48 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/48 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "4to"@en ;
+ :prefLabel "4:o"@sv ;
+ :altLabel "Quarto"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/4 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/4 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "64mo"@en ;
+ :prefLabel "64:o"@sv ;
+ :altLabel "Sixty-fourmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/64 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett flera blad som utgör 1/64 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "72mo"@en ;
+ :prefLabel "72:o"@sv ;
+ :altLabel "Seventy-twomo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/72 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/72 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "8vo"@en ;
+ :prefLabel "8:o"@sv ;
+ :altLabel "Octavo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/8 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/8 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "96mo"@en ;
+ :prefLabel "96:o"@sv ;
+ :altLabel "Ninety-sixmo"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/96 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör 1/96 av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "Folio"@en ;
+ :prefLabel "2:o"@sv ;
+ :altLabel "2o"@en ;
+ :definition "A bibliographic format that consists of one or more leaves that are 1/2 of the whole sheet."@en ;
+ :definition "Bokformat bestående av ett eller flera blad som utgör hälften av hela arket."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BibliographicFormat ;
+ :prefLabel "Full-sheet"@en ;
+ :prefLabel "Helt ark"@sv ;
+ :altLabel "Full sheet"@en ;
+ :definition "A bibliographic format that consists of one or more sheets that have not been cut or folded."@en ;
+ :definition "Bokformat bestående av ett eller flera ark som inte beskurits eller vikts."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "340 #m (term)" .
+
+ a :BroadcastStandard ;
+ :prefLabel "HDTV"@en ;
+ :prefLabel "HDTV"@sv ;
+ :definition "A broadcast standard that is an encoding system for digital broadcast television, named after high-definition television."@en ;
+ :definition "Sändningsstandard som är ett kodningssystem för digitalt sänd tv, namngivet efter high definition tv."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "346 #b (term)" ,
+ "538 #a (anmärkning)" .
+
+ a :BroadcastStandard ;
+ :prefLabel "NTSC"@en ;
+ :prefLabel "NTSC"@sv ;
+ :definition "A broadcast standard that is an analog broadcast television system that was used in most of the Americas and areas of the Far East, named after the National Television System Committee."@en ;
+ :definition "Sändningsstandard som är ett analogt sändningssystem för tv som användes i hela Amerika och Japan, namngivet efter National Television System Committee"@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "346 #b (term)" ,
+ "538 #a (anmärkning)" .
+
+ a :BroadcastStandard ;
+ :prefLabel "PAL"@en ;
+ :prefLabel "PAL"@sv ;
+ :definition "A broadcast standard that is a colour encoding system for analog broadcast television used in most countries broadcasting at 625-line / 25 frame per second, named after Phase Alternating Line."@en ;
+ :definition "Sändningsstandard som är ett färgkodningssystem för analogt sänd tv som användes i stora delar av världen som hade en tv-standard med 625 linjer och 25 rutor per sekund, namngivet efter Phase Alternating Line."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "346 #b (term)" ,
+ "538 #a (anmärkning)" .
+
+ a :BroadcastStandard ;
+ :prefLabel "SECAM"@en ;
+ :prefLabel "SECAM"@sv ;
+ :definition "A broadcast standard that is a colour encoding system for analog broadcast television first used in France, named after Séquentiel couleur à mémoire."@en ;
+ :definition "Sändningsstandard som är ett färgkodningssystem för analogt sänd tv, först använt i Frankrike, namngivet efter Séquentiel couleur à mémoire."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "346 #b (term)" ,
+ "538 #a (anmärkning)" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Activity card"@en ;
+ :prefLabel "Aktivitetskort"@sv ;
+ :definition "A unit of extent that is a card printed with words, numerals, or pictures to be used by an individual or a group as a basis for performing a specific activity."@en ;
+ :definition "Kort med påtryckta ord, tal och/eller bilder som används av en person eller en grupp för att utföra en särskild aktivitet."@sv ;
+ :scopeNote "This term applies to still images. The cards are usually issued in sets."@en ;
+ :scopeNote "Termen används för stillbilder. Korten ges vanligtvis ut i paket."@sv ;
+ :related ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Atlas"@en ;
+ :prefLabel "Atlas"@sv ;
+ :definition "A unit of extent that is a volume of maps or other cartographic content with or without descriptive text."@en ;
+ :definition "Volym med kartor eller annat kartografiskt innehåll med eller utan beskrivande text."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Case"@en ;
+ :prefLabel "Fodral i nuvarande glossary."@sv ;
+ :definition "A unit of extent that consists of a box containing bound or unbound resources."@en ;
+ :definition "Låda innehållande bundna eller obundna resurser."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Chart"@en ;
+ :prefLabel "Diagram"@sv ;
+ :definition "A unit of extent that consists of a two-dimensional representation of data in graphic or tabular form."@en ;
+ :definition "Tvådimensionell representation av data i grafisk form eller tabellform."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Coin"@en ;
+ :prefLabel "Mynt"@sv ;
+ :definition "A unit of extent that consists of a piece of metal stamped by government authority for use as money."@en ;
+ :definition "Metallbit präglad av en statlig myndighet som används som betalningsmedel."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Collage"@en ;
+ :prefLabel "Kollage"@sv ;
+ :definition "A unit of extent that consists of a work in two dimensions or very low relief that was made by affixing paper, fabrics, photographs, or other materials onto a flat surface."@en ;
+ :definition "Verk i två dimensioner eller med väldigt låg relief, tillverkat genom att papper, tyger, fotografier eller andra material fästs på en plan yta."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Column"@en ;
+ :prefLabel "Kolumn"@sv ;
+ :definition "A unit of extent that consists of one of two or more vertical sections of text appearing on the same page or leaf."@en ;
+ :definition "En eller flera lodräta textstycken på samma sida eller blad."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Diagram"@en ;
+ :prefLabel "Diagram (se även chart)"@sv ;
+ :definition "A unit of extent that is a geographic representation of numeric data, or of the course or results of an action or process."@en ;
+ :definition "Geografisk representation av numeriska data, eller förloppet eller resultatet av en handling eller process."@sv ;
+ :scopeNote "This term applies to cartographic resources. The term is sometimes also applied to maps characterized by much simplified, or schematic, representation."@en ;
+ :scopeNote "Termen används för kartografiska resurser. Ibland används den även för kartor som är väldigt förenklade eller schematiska."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Diorama"@en ;
+ :prefLabel "Diorama"@sv ;
+ :definition "A unit of extent that consists of a three-dimensional representation of a scene created by placing objects, figures, etc., in front of a two-dimensional painted background."@en ;
+ :definition "Tredimensionell representation som återger en scen arrangerad med hjälp av föremål, figurer o.sv. framför en plan, målad bakgrund."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Drawing"@en ;
+ :prefLabel "Teckning"@sv ;
+ :definition "A unit of extent that consists of a visual work produced by drawing, which is the application of lines on a surface, often paper, by using a pencil, pen, chalk, or some other tracing instrument to focus on the delineation of form rather than the application of colour."@en ;
+ :definition "Visuellt verk framställt genom teckning, d.v.s. applicering av linjer på ett underlag, ofta papper, med hjälp av en penna?, krita eller annat markerande verktyg med fokus på att avbilda form snarare än att applicera färg."@sv ;
+ :scopeNote "This term applies to still images. This term is often defined broadly to refer to computer-generated images as well."@en ;
+ :scopeNote "Termen används för stillbilder. Termen är ofta brett definierad och omfattar även datorgenererade bilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Exhibit"@en ;
+ :prefLabel "Utställning"@sv ;
+ :definition "A unit of extent that consists of objects on display, along with the display environment of cases, labels, etc."@en ;
+ :definition "Utställda föremål i en utställningsmiljö med montrar och texter etc."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Flash card"@en ;
+ :prefLabel "Bildkort"@sv ;
+ :altLabel "Electronic flash card"@en ;
+ :altLabel "Elektroniskt bildkort"@sv ;
+ :definition "A unit of extent that consists of a card, or digital representation of a card, carrying words, numerals, pictures, etc., designed for rapid display as an aid to learning."@en ;
+ :definition "Kort eller en digital representation av ett kort, med påtryckt text, siffror, bilder etc., avsedd för snabb presentation som hjälp vid inlärning."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Folded sheet"@en ;
+ :prefLabel "Vikt ark"@sv ;
+ :definition "A unit of extent that consists of a sheet designed to be read in pages when folded."@en ;
+ :definition "Ark avsett att läsas som sidor när det är vikt."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Game"@en ;
+ :prefLabel "Spel"@sv ;
+ :definition "A unit of extent that consists of a set of objects designed for manipulation according to prescribed or implicit rules for education, entertainment, or therapy."@en ;
+ :definition "Uppsättning föremål avsedda att manipuleras enligt föreskrivna eller outsagda regler för utbildning, underhållning eller som terapi."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :related ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Globe"@en ;
+ :prefLabel "Glob"@sv ;
+ :definition "A unit of extent that is a depiction of the earth or other celestial body, real or imaginary, on the surface of a sphere."@en ;
+ :definition "Återgivning av jorden eller annan himlakropp, verklig eller påhittad, på ytan av ett klot."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Icon"@en ;
+ :prefLabel "Ikon"@sv ;
+ :definition "A unit of extent that consists of an image that portrays a sacred entity and that is itself regarded as sacred."@en ;
+ :definition "Bild som porträtterar en helig entitet och som i sig själv betraktas som helig."@sv ;
+ :scopeNote "This term applies to still images. Most commonly it comprises tempera on panel, but it may be in any two-dimensional or relief medium, including fresco."@en ;
+ :scopeNote "Termen används för stillbilder. Vanligtvis består den av tempera på träpanel, men den kan vara i ett tvådimensionellt medium eller i relief, även al fresco."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Jigsaw puzzle"@en ;
+ :prefLabel "Pussel"@sv ;
+ :definition "A unit of extent that consists of a picture, usually on pasteboard or wood, which has been cut into interlocking shapes intended to be reassembled."@en ;
+ :definition "Bild, vanligtvis på papp eller trä, som har skurits i bitar som passar ihop med varandra och är tänkta att sammanfogas igen."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Leaf"@en ;
+ :prefLabel "Blad"@sv ;
+ :definition "A unit of extent that consists of a single bound or fastened sheet as a subunit of a volume; each leaf consists of two pages, one on each side, either or both of which may be blank."@en ;
+ :definition "Ark som är bundet eller fäst som en underenhet till en volym; varje blad har två sidor, där den ena eller båda kan vara tomma."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Map"@en ;
+ :prefLabel "Karta"@sv ;
+ :definition "A unit of extent that consists of a representation, normally to scale and on a two-dimensional medium, of a selection of material or abstract features on, or in relation to, the surface of the earth, another celestial body, or an imaginary place."@en ;
+ :definition "Vanligtvis skalenlig och tvådimensionell framställning av ett urval fysiska eller abstrakta drag hos jordens, annan himlakropps eller påhittad plats yta."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Medal"@en ;
+ :prefLabel "Medalj"@sv ;
+ :definition "A unit of extent that consists of a small piece of metal, bearing a relief design on one or both sides and having a commemorative purpose; not used as a medium of exchange."@en ;
+ :definition "Liten metallbit med relief på ena eller båda sidorna och avsedd för jubileumsändamål; används inte som betalningsmedel."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Mock-up"@en ;
+ :prefLabel "Fullskalemodell (KRS)"@sv ;
+ :definition "A unit of extent that consists of a physical representation of a device or process that may be modified for training or analysis to emphasize a particular part or function."@en ;
+ :definition "Fysisk framställning av en anordning eller en process som kan ändras i övningssyfte eller för att analysera en viss del eller funktion."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Model"@en ;
+ :prefLabel "Model"@sv ;
+ :definition "A unit of extent that consists of a three-dimensional representation of a real or imagined object."@en ;
+ :definition "Tredimensionell framställning av ett verkligt eller påhittat föremål."@sv ;
+ :scopeNote "This term applies to cartographic resources and three-dimensional forms."@en ;
+ :scopeNote "Termen används för kartografiska resurser och tredimensionella former."@sv ;
+ :related ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Page"@en ;
+ :prefLabel "Sida"@sv ;
+ :definition "A unit of extent that consists of a single side of a leaf."@en ;
+ :definition "Enskild sida av ett blad."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Painting"@en ;
+ :prefLabel "Målning"@sv ;
+ :definition "A unit of extent that consists of an item in which images are formed primarily by the direct application of pigment suspended in a medium, arranged in masses of colour onto a generally two-dimensional surface."@en ;
+ :definition "Föremål på vilket bilder framställts, främst genom direkt applicering av utspätt pigment, arrangerat i lager av färg, vanligtvis på en på en plan yta."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Photograph"@en ;
+ :prefLabel "Fotografi"@sv ;
+ :definition "A unit of extent that consists of an image captured by a lens and carried on the surface of a sheet."@en ;
+ :definition "Bild fångad av en lins och överförd till ytan av ett ark."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Picture"@en ;
+ :prefLabel "Bild"@sv ;
+ :definition "A unit of extent that consists of two-dimensional representations."@en ;
+ :definition "Tvådimensionella representationer."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Portfolio"@en ;
+ :prefLabel "Portfölj (KRS)"@sv ;
+ :definition "A unit of extent that is a container for holding loose materials, that usually consists of two covers joined together at the back."@en ;
+ :definition "Mapp som samlar löst material; består vanligtvis av två omslag som är förenade i ryggen."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Postcard"@en ;
+ :prefLabel "Vykort"@sv ;
+ :definition "A unit of extent that consists of a card on which a message may be written or printed for mailing without an envelope."@en ;
+ :definition "Kort på vilket ett meddelande kan vara skrivet eller tryckt och som kan skickas utan kuvert."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Poster"@en ;
+ :prefLabel "Poster eller affisch"@sv ;
+ :definition "A unit of extent that consists of a notice, usually decorative or pictorial, intended to be posted to advertise, promote, or publicize an activity, cause, product, or service; also, a decorative, mass-produced print intended for hanging."@en ;
+ :definition "Meddelande, vanligtvis dekorativt eller illustrerat, avsett att sättas upp för att annonsera, marknadsföra eller offentliggöra en aktivitet, en sak, en vara eller tjänst; även ett dekorativt, massproducerat tryck avsett att hängas upp."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Print"@en ;
+ :prefLabel "Tryckt bild"@sv ;
+ :definition "A unit of extent that consists of a pictorial work produced by transferring an image by means of a matrix such as a plate, block, or screen, using any of various printing processes."@en ;
+ :definition "Bildverk framställt genom att överföra en bild med en matris, till exempel en platta, ett block eller ram med olika tryckprocesser."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Profile"@en ;
+ :prefLabel "Profil"@sv ;
+ :definition "A unit of extent that is a scale representation of the intersection of a vertical surface, which may or may not be a plane, with the surface of the ground, or of the intersection of such a vertical surface with that of a conceptual three-dimensional model representing phenomena having a continuous distribution."@en ;
+ :definition "Skalenlig framställning av skärningen mellan en vertikal yta (som inte behöver vara ett plan) och markytan, eller skärningen mellan en sådan vertikal yta och ytan hos en tredimensionell modell, som återger fenomen med kontinuerlig utbredning."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Radiograph"@en ;
+ :prefLabel "Röntgenbild"@sv ;
+ :definition "A unit of extent that is a photograph produced by the passage of radiation, such as X rays, gamma rays, or neutrons, through an opaque object."@en ;
+ :definition "Fotografi framställt genom strålning, till exempel genom att röntgenstrålar, gammastrålar eller neutroner, passerat ett ogenomskinligt föremål."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Remote-sensing image"@en ;
+ :prefLabel "Fjärranalysbild"@sv ;
+ :definition "A unit of extent that is a pictorial product of any remote-sensing instrument that detects and measures reflected and/or emitted electromagnetic radiation from a distance and reflected underwater sound waves in the case of sonar."@en ;
+ :definition "Bildprodukt framställd med hjälp av sensor som på avstånd känner av och mäter reflekterad och/eller utsänd elektromagnetisk strålning, och i fallet ekolod, reflekterande undervattensljudvågor."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Sculpture"@en ;
+ :prefLabel "Skulptur"@sv ;
+ :definition "A unit of extent that consists of a physical representation, usually of art, in which an image or form is produced in relief, in intaglio, or in the round."@en ;
+ :definition "Fysisk representation, vanligen konst, i vilken en bild eller figur framställs i relief, i djuptryck eller i fri form."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Section"@en ;
+ :prefLabel "Kartsektion"@sv ;
+ :altLabel "Map section"@en ;
+ :altLabel "Kartsnitt"@sv ;
+ :definition "A unit of extent that is a scale representation of a vertical surface, commonly a plane, displaying both the profile where it intersects the surface of a celestial body, or some conceptual model, and the underlying structures along the plane of intersection."@en ;
+ :definition "Skalenlig framställning av en lodrät yta, vanligen ett plan, som visar både den profil där den skär markytan, eller någon tänkt modell, och de strukturer som ligger under ytan längs skärningsplanet."@sv ;
+ :scopeNote "This term applies to cartographic resources."@en ;
+ :scopeNote "Termen används för kartografiska resurser."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Specimen"@en ;
+ :prefLabel "Provexemplar"@sv ;
+ :definition "A unit of extent that consists of an individual unit or sample chosen to represent a larger population or aggregation."@en ;
+ :definition "Individuell enhet eller prov som representerar en större population eller samling."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Study print"@en ;
+ :prefLabel "?"@sv ;
+ :definition "A unit of extent that consists of an image sometimes accompanied by text and used for education."@en ;
+ :definition "Bild, ibland med text, som används för undervisning."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Technical drawing"@en ;
+ :prefLabel "Teknisk ritning"@sv ;
+ :definition "A unit of extent that consists of a cross section, detail, diagram, elevation, perspective, plan, working plan, etc., made for use in an engineering or other technical context."@en ;
+ :definition "Tvärprojektion, detalj, diagram, vertikalprojektion, perspektiv, planritning, arbetsritning etc., avsedd för bruk i ett tekniskt sammanhang."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Toy"@en ;
+ :prefLabel "Leksak"@sv ;
+ :definition "A unit of extent that consists of an object designed for education, entertainment, or stimulation through play."@en ;
+ :definition "Föremål avsett för undervisning, underhållning eller stimulering genom lek."@sv ;
+ :scopeNote "This term applies to three-dimensional forms."@en ;
+ :scopeNote "Termen används för tredimensionella former."@sv ;
+ :related ;
+ :exactMatch ;
+ :closeMatch ,
+ ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "View"@en ;
+ :prefLabel "Perspektivbild"@sv ;
+ :definition "A unit of extent that is a perspective representation of the landscape in which detail is shown as if projected on an oblique plane."@en ;
+ :definition "Perspektivisk framställning av landskapet, i vilken detaljerna återges som om de var projicerade på ett lutande plan."@sv ;
+ :scopeNote "This term applies to cartographic resources. A bird's-eye view, panorama, panoramic drawing, worm's-eye view, etc., are included."@en ;
+ :scopeNote "Termen används för kartografiska resurser. Omfattar fågelperspektiv, panorama, grodperspektiv, etc.."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "300 #a" .
+
+ a :CarrierExtentUnit ;
+ :prefLabel "Wall chart"@en ;
+ :prefLabel "Väggplansch"@sv ;
+ :definition "A unit of extent that consists of a tabular or graphic representation of data appropriate for display on a wall."@en ;
+ :definition "Data framställd i grafisk- eller tabellform, avsedd att visas på en vägg."@sv ;
+ :scopeNote "This term applies to still images."@en ;
+ :scopeNote "Termen används för stillbilder."@sv ;
+ :exactMatch ;
+ :note "300 #a" .
+
+ a :CarrierType ;
+ :prefLabel "Audio cartridge"@en ;
+ :prefLabel "Ljudmagasin (sg)"@sv ;
+ :definition "A carrier type that consists of a cartridge containing an audio tape."@en ;
+ :definition "Magasin innehållande ett ljudband."@sv ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "007 (Ljudupptagningar: s)" ,
+ "01 (Särskild bärarbeteckning): g Ljudmagasin" ,
+ "Kommer ut i 338 #a Ljudmagasin #b g #2 rdacarrier vid MARC-export" ,
+ "Medietyp: ljud" .
+
+ a :CarrierType ;
+ :prefLabel "Audio cylinder"@en ;
+ :prefLabel "Ljudcylinder (se)"@sv ;
+ :definition "A carrier type that consists of a roller-shaped object on which sound waves are incised or indented in a continuous circular groove."@en ;
+ :definition "Rullformat objekt på vilket ljudvågor är inskrivna eller intryckta i ett sammanhängande cirkelspår."@sv ;
+ :scopeNote "Wax cylinders, wire cylinders, etc., are included."@en ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "007 (Ljudupptagningar: s)" ,
+ "01 (Särskild bärarbeteckning): e" ,
+ "Kommer ut i 338 #a Ljudcylinder #b e #2 rdacarrier vid MARC-export" ,
+ "Medietyp: ljud" .
+
+ a :CarrierType ;
+ :prefLabel "Audio disc"@en ;
+ :prefLabel "Ljudskiva (sd)"@sv ;
+ :altLabel "Sound disc"@en ;
+ :definition "A carrier type that consists of a disc on which sound waves, recorded as modulations, pulses, etc., are incised or indented in a continuous spiral groove."@en ;
+ :definition "Skiva på vilken ljudvågor, inspelade som moduleringar, vibrationer osv. är inskrivna eller intryckta i ett sammanhängande cirkelspår."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ .
+
+ a :CarrierType ;
+ :prefLabel "Sound-track reel"@en ;
+ :prefLabel "Filmljudspole (si)"@sv ;
+ :definition "A carrier type that consists of an open reel holding a length of film on which sound is recorded."@en ;
+ :definition "Öppen spole med film på vilken ljud är inspelat."@sv ;
+ :scopeNote "Use for sound-track films, whether or not they are intended to accompany visual images on film."@en ;
+ :exactMatch ;
+ :closeMatch ;
+ :note "007 (Ljudupptagningar: s)" ,
+ "01 (Särskild bärarbeteckning): i" ,
+ "Kommer ut i 338 #a Filmljudspole #b i #2 rdacarrier vid MARC-export" ,
+ "Medietyp: ljud" .
+
+ a :CarrierType ;
+ :prefLabel "Audio roll"@en ;
+ :prefLabel "Ljudrulle (sq)"@sv ;
+ :altLabel "Piano roll"@en ;
+ :definition "A carrier type that consists of a roll of paper on which musical notes are represented by perforations, designed to mechanically reproduce the music when used in a player piano, player organ, etc."@en ;
+ :definition "Pappersrulle på vilken musiknoter representeras av perforeringar avsedda att mekaniskt återge musiken när den används i ett självspelande piano, en självspelande orgel osv."@sv ;
+ :exactMatch ;
+ :closeMatch .
+
+ a :CarrierType ;
+ :prefLabel "Audiocassette"@en ;
+ :prefLabel "Ljudkassett (ss)"@sv ;
+ :definition "A carrier type that consists of a cassette containing an audiotape."@en ;
+ :definition "Kassett innehållande ett ljudband."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ .
+
+ a :CarrierType ;
+ :prefLabel "Audiotape reel"@en ;
+ :prefLabel "Ljudspole"@sv ;
+ :definition "A carrier type that consists of an open reel holding a length of audiotape to be used with reel-to-reel audio equipment."@en ;
+ :definition "Öppen spole med ljudband för användning i rullbandspelare med öppna spolar."@sv ;
+ :exactMatch ;
+ :note "007 (Ljudupptagningar: s)" ,
+ """01 (Särskild bärarbeteckning): t Ljudspole
+Öppen spole, som kräver tomspole i utrustningen.""" ,
+ "Kommer ut i 338 #a Ljudspole #b t #2 rdacarrier vid MARC-export" ,
+ "Medietyp: ljud" .
+
+ a :CarrierType ;
+ :prefLabel "Computer card"@en ;
+ :prefLabel "Datorkort"@sv ;
+ :definition "A carrier type that consists of a card containing digitally encoded data designed for use with a computer."@en ;
+ :definition "Kort innehållande digitalt kodade data avsett för användning i en dator."@sv ;
+ :exactMatch ;
+ :closeMatch .
+
+ a :CarrierType ;
+ :prefLabel "Computer chip cartridge"@en ;
+ :prefLabel "Datorminnesmodul"@sv ;
+ :definition "A carrier type that consists of a cartridge containing a miniaturized electronic circuit on a small wafer of semiconductor silicon, designed to provide additional processing, memory, or storage capacity."@en ;
+ :definition "Magasin innehållande elektronisk miniatyrkrets på en lövtunn skiva av halvledande silikon."@sv ;
+ :exactMatch ;
+ :closeMatch ,
+ .
+
+ a :CarrierType ;
+ :prefLabel "Computer disc"@en ;
+ :prefLabel "Datorskiva"@sv ;
+ :definition "A carrier type that consists of a disc containing digitally encoded data that are magnetically or optically recorded."@en ;
+ :definition "Skiva innehållande digitalt kodade data som är magnetiskt eller optiskt inspelade."@sv ;
+ :exactMatch ;
+ :closeMatch .
+
+ a :CarrierType ;
+ :prefLabel "Computer disc cartridge"@en ;
+ :prefLabel "Datorskivmagasin"@sv ;
+ :definition "A carrier type that consists of a cartridge containing one or more computer discs."@en ;
+ :definition "Magasin innehållande en eller fler datorskivor."@sv ;
+ :exactMatch ;
+ :closeMatch .
+
+