-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththesaurus.ttl
More file actions
2945 lines (1929 loc) · 131 KB
/
thesaurus.ttl
File metadata and controls
2945 lines (1929 loc) · 131 KB
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
@prefix audiences: <https://homernetwork.github.io/vocabulary/audiences/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix euvoc: <http://publications.europa.eu/ontology/euvoc#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix identifiers: <https://homernetwork.github.io/vocabulary/identifiers/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix organizations: <https://homernetwork.github.io/vocabulary/organizations/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix roles: <https://homernetwork.github.io/vocabulary/roles/> .
@prefix schema: <https://schema.org/> .
@prefix sem: <http://semanticweb.cs.vu.nl/2009/11/sem/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix skosthes: <http://purl.org/iso25964/skos-thes#> .
@prefix skosxl: <http://www.w3.org/2008/05/skos-xl#> .
@prefix subvenue: <https://homernetwork.github.io/vocabulary/rooms/> .
@prefix venues: <https://homernetwork.github.io/vocabulary/venues/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://homernetwork.github.io/vocabulary/venues/> dct:description "Terms to describe venues."@en;
dct:license <https://creativecommons.org/licenses/by/4.0/>;
dct:title "Venues"@en .
venues:Venue skos:altLabel "Salle obscure"@fr, "bioscoop"@nl, "plaats"@nl, "theater"@nl,
"zaal"@nl;
skos:definition "A place"@en;
skos:prefLabel "Biograf"@sv, "Salle de cinéma"@fr, "Venue"@en .
venues:Kommunales_Kino skos:altLabel "Kommunales Kino"@de;
skos:broader venues:Public_venue;
skos:definition "Cinema financed by a municipality, non-commercial, dedicated to art cinema and retrospectives of classics and other historically relevant films"@en;
skos:prefLabel "Kommunales Kino"@de, "Kommunales Kino"@en .
venues:Art_house_cinema skos:broader venues:Public_venue, venues:Venue_by_programming;
skos:definition "Art cinema, sometimes with financial support by the municipality"@en;
skos:prefLabel "Art house cinema"@en, "Filmhuis"@nl, "Programmkino"@de .
venues:Frontline_cinema sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestBeginTimeStamp "1941-12-31"^^xsd:date;
skos:altLabel "Frontline cinema"@en;
skos:broader venues:Private_venue;
skos:definition "Finland: dugouts that were built for protection during the war (frontline cinema) Viipuri during the Winter War. To add: period"@en;
skos:prefLabel "Frontline cinema"@en;
schema:spatialCoverage "Finland"@en .
venues:Warehouses sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestBeginTimeStamp "1941-12-31"^^xsd:date;
skos:altLabel "Warehouses"@en;
skos:broader venues:Venue_with_fixed_location;
skos:definition "Cinemas are warehouse buildings taken over during the war. To add: period."@en;
skos:prefLabel "Warehouses"@en;
schema:spatialCoverage "Finland"@en .
venues:Multiplex skos:altLabel "Multi-screen cinema"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "A multiplex is a facility that accommodates multiple screens for the simultaneous screening of films."@en;
skos:editorialNote "Merged with: \"venues:Multiplex_and_Multi-screen_cinema\""@en;
skos:prefLabel "Filmstaden"@sv, "Multiplex"@en, "multisala"@it .
venues:School skos:altLabel "School"@en;
skos:broader venues:Private_venue;
skos:definition "Indoor space for education where sometimes a film is shown"@en;
skos:prefLabel "School"@en .
venues:Open-air_cinema skos:altLabel "Arena"@en;
skos:broader venues:Open-air;
skos:definition "An open air or outdoor cinema, often temporary"@en;
skos:editorialNote "Merged Terraza into this concept. It's definition was: when we refer to humble neighborhood cinema places with no roof, we tend to qualify the description, saying \"open-air cinemas\" or \"terrazas.\" DOI: https://doi.org/10.1007/978-3-031-38789-0_5, DOI: 10.1386/slac.14.3.277_1."@en;
skos:prefLabel "Open-air cinema"@en, "Terraza"@es, "Utomhusbio"@sv, "openluchtbioscoop"@nl .
venues:Folkets_Hus_Biografer skos:altLabel "Folkbiografer"@sv, "Folkets bio"@sv;
skos:broader venues:Public_venue;
skos:definition "Cinemas driven by temperence societies and other independent cinemas and a smaller number of other kinds of grassroots organisations, such as local youth and sports clubs. This kind of ownership could involve a single cinema or a chain of cinemas."@en;
skos:prefLabel "Folkets Hus Biografer"@en, "Folkets Hus Biografer"@sv .
venues:Biograf skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "a venue, usually a building, for viewing films that has been listed by film companies (also known as 'cinemas' in the Swedish industry records, ie Filmägarnas kontrollbyrå) for more or less regular exhibition of film. It is a geographically fixed (with a street address) building. The frequency of film exhibition in a cinema varies from once every other month to 14 screenings a week (or more). Cinema can be one function of many in a multipurpose venue or a stand-alone purpose-built venue. Cinema can be owned by the organisation or company that owns the venue or it can be a company who rents the venue (multi-purpose of stand-alone) for exhibition. Sources: https://tmgonline.nl/articles/10.18146/tmg.601 https://www.cinemahistories.org/projects/swedish-cinema-everyday-life/"@en;
skos:prefLabel "Biograf"@en, "Biograf"@sv .
venues:Bioscope_theatre skos:altLabel "Bioscope theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Similar to cinematograph theatre but less common becasue bioscope did not become the most common word for projector. The London-based trade journal The Bioscope kept it in circulation."@en;
skos:prefLabel "Bioscope theatre"@en, "bioscooptheater"@nl .
venues:Cinema_theatre skos:altLabel "Cinema house"@en, "Coliseum"@es, "Kino"@de, "bioscooptheater"@nl,
"cinema"@nl, "filmtheater"@nl;
skos:broader venues:Public_venue;
skos:definition "A building in which films were shown for a public that pays an entrance fee (so commercial cinema operations, in our data restricted to members of the national cinema union NBB)"@en;
skos:editorialNote "Merged 'Cinema House' into this concept. It's Spanish label applies to US only Spanish language areas."@en;
skos:prefLabel "Cinema theatre"@en, "Lichtspieltheater"@de, "Sala cinematografica"@it,
"bioscoop"@nl .
venues:Kinematographentheater sem:hasEarliestBeginTimeStamp "1700-01-01"^^xsd:date;
sem:hasLatestEndTimeStamp "1950-12-31"^^xsd:date;
skos:broader venues:Cinema_theatre, venues:Public_venue;
skos:definition "Cinema theatre"@en;
skos:prefLabel "Kinematographentheater"@de, "Kinematographentheater"@en;
skos:scopeNote "Historical term used for Cinema theatre"@en .
venues:Cinematograph_theatre skos:altLabel "Cinematograph theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Cinematograph was the term used for projector in official discourse in the UK/Ireland, such as in the Cinematograph Act, 1909, and the licences that were issued by urban councils on foot of it. As a result, the premises that focused on showing films using one of these devices were often officially referred to as cinematograph theatres."@en;
skos:prefLabel "Cinematograph theatre"@en .
venues:Club_house skos:altLabel "Club house"@en, "verenigingszaal"@nl;
skos:broader venues:Private_venue, venues:Venue_with_fixed_location;
skos:definition "Venue for meetings of labour associations, temperance groups, miners' institutes, sports and artistic clubs, drill halls, etc."@en;
skos:prefLabel "Club house"@en, "verenigingsgebouw"@nl .
venues:Commercial_building_converted_into_cinema skos:altLabel "Commercial building converted into cinema"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Commercial buildings converted into cinemas - shops, theatres, railway arches etc"@en;
skos:prefLabel "Commercial building converted into cinema"@en .
venues:Converted_premises skos:altLabel "Converted premises"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Commercial or otherwise premises adapted for film exhibition but which retained a connection to their previous use, often in the naming of the premises."@en;
skos:prefLabel "Converted premises"@en .
venues:Drive-in_cinema skos:altLabel "Autokino"@de, "Drive-in cinema"@en;
skos:broader venues:Open-air_cinema, venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Drive-ins are outdoor venues where audiences watch movies from their own vehicles. These locations provide all the necessary screening facilities for enjoying films."@en;
skos:prefLabel "Autokino"@de, "Drive-in cinema"@en, "drive-in bioscoop"@nl .
venues:Electric_theatre skos:altLabel "Electric theatre"@en;
skos:broader venues:Public_venue;
skos:definition "A company called Electric Theatres existed, but other unaffiliated proprietors referred to their premises as an electric theatre."@en;
skos:prefLabel "Electric theatre"@en .
<https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)> skos:altLabel
"Kinematograf (venue)"@de;
skos:broader venues:Public_venue;
skos:definition "The projection equipment and the term could also refer to the venue of film exhibition (used in the first decades of cinema)"@en;
skos:prefLabel "Kinematograf (venue)"@de, "Kinematograf (venue)"@en .
venues:Multipurpose_venue skos:altLabel "Multipurpose venue"@en;
skos:broader venues:Venue_with_fixed_location;
skos:definition "The most important of these were town halls, often serving as the main film exhibition venue in smaller towns or villages.Church halls were also important but may have served only part of the local community."@en;
skos:narrower venues:School;
skos:prefLabel "Multipurpose venue"@en .
venues:Open-air skos:altLabel "Open-air"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "It can be a square, a courtyard, a field. source: Europeancinemaaudiences.org"@en;
skos:editorialNote "merge with \"venues:Open-air_cinema\"?"@en;
skos:prefLabel "Open-air"@en, "open lucht"@nl .
venues:Picture_House skos:altLabel "Picture House"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "in the early cinema period (1890s-c.1915), most things were in flux, and \"cinema\" was not the generic term for a premises exhibiting films; several other terms were used, the most common of which I have found in my research - which focuses on Ireland, still part of the UK at this time - was \"picture house\". But this was not a neutrally descriptive term; it and its alternatives often encoded class/commercial issues."@en;
skos:prefLabel "Picture House"@en .
venues:Picture_palace skos:altLabel "Picture palace"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "in certain contexts, this may have indicated a more salubrious venue than competitors or sometimes just the suggestion rather than the reality."@en;
skos:prefLabel "Picture palace"@en .
venues:Picture_theatre skos:altLabel "Picture theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Probably the second most common term in Ireland in the 1910s."@en;
skos:prefLabel "Picture theatre"@en .
venues:Private_home skos:altLabel "Private home"@en;
skos:broader venues:Private_venue;
skos:closematch "ownership:private"@en;
skos:definition "A private venue that offers occasional film screenings"@en;
skos:prefLabel "Private home"@en .
venues:Sala_cinematografica skos:altLabel "Sala"@it;
skos:broader venues:Venue_with_fixed_location;
skos:definition "Every single place, usually a building, where a movie was shown. It could be a real movie theatre, a theatre, a cinema-theatre, a multipurpose venue, a building used for something else (e.g. hospital), an open-air cinema, etc. It is an address, usually, and correspond to specific geographic coordinates. The building, the management, the architecture, the name, etc., all can change, but it stays the same 'sala cinematografica' as long as it shows movies. Travelling cinemas are exluded for now. To account for moving exhibitors, societies etc, we have other categories (such as people and companies)."@en;
skos:prefLabel "Sala cinematografica"@en, "Sala cinematografica"@it .
venues:Stand-alone_purpose-built_venue skos:altLabel "Stand-alone purpose-built venue"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "An individual cinema that is based in a cinema dedicated venue"@en;
skos:editorialNote "In UK since 1910"@en;
skos:prefLabel "Stand-alone purpose-built venue"@en .
venues:Theatre skos:altLabel "Theatre"@en;
skos:broader venues:Public_venue;
skos:definition "Theatre - here referring not in the US synonym for cinema but to a theatre which mostly hosted live shows but showed films occasionally or in the case of variety theatres, incorporated film into its offerings on a regular basis for a substantial period (years), particularly if the proprietors had invested in a projector."@en;
skos:prefLabel "Theatre"@en, "Varieté"@de .
venues:Travelling_cinema skos:altLabel "Travelling cinema"@en, "reizende bioscoop"@nl;
skos:broader venues:Travelling_venue;
skos:definition "A temporary setup for screening films to an audience at a venue that is not a purpose built building (e.g., fairs, community halls, etc.)"@en;
skos:prefLabel "Travelling cinema"@en, "Wanderkino"@de, "reisbioscoop"@nl .
venues:Virtual_Venue skos:altLabel "Virtual Venue"@en;
skos:broader venues:Venue;
skos:definition "Online spaces for viewing digital audiovisual content. Viewers can access them through various screens at their convenience, choosing the time and mode of consumption."@en;
skos:prefLabel "Virtual Venue"@en .
venues:Warehouse_building sem:hasEarliestBeginTimeStamp "1939-01-01"^^xsd:date;
sem:hasLatestEndTimeStamp "1940-12-31"^^xsd:date;
skos:altLabel "Warehouse building"@en;
skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Warehouse buildings taken over during the war. Viipuri during the Winter War, 1939-1940"@en;
skos:prefLabel "Warehouse building"@en;
schema:spatialCoverage "Finland"@en .
venues:Streaming_Platform skos:altLabel "Streaming Platform"@en;
skos:broader venues:Virtual_Venue;
skos:definition "on-demand online entertainment sources for TV shows, movies, and other streaming media"@en;
skos:prefLabel "Streaming Platform"@en .
venues:Cinema sem:hasEarliestBeginTimeStamp "1915-01-01"^^xsd:date;
skos:altLabel "Cinema"@en, "Salas de Cine"@es, "Teatros"@es;
skos:broader venues:Public_venue;
skos:definition "A building where films were shown, not necessarily on a regular basis. It does not matter whether this was on a regular basis or not. Also a cinema can be an open air space (not a building) where a film is screened. This can be a square, a courtyard, a field. Cinema is \"\"an arrangement of things in space (including tools and information carriers); an arrangement of activity in time. Cf definition of Picture House"@en;
skos:prefLabel "Cinema"@en, "Cines"@es, "bioscoop"@nl;
schema:spatialCoverage "UK,Ireland"@en .
venues:Tent skos:altLabel "tent"@en;
skos:broader venues:Public_venue;
skos:definition "a portable shelter"@en;
skos:prefLabel "Tent"@en, "Tent"@nl .
venues:Registered_cinema skos:broader venues:Public_venue;
skos:definition "A venue, that has been listed by film companies (also known as 'cinemas' in the Swedish industry records, ie Filmägarnas kontrollbyrå"@en;
skos:prefLabel "Registered cinema"@en .
venues:Venue_with_fixed_location skos:broader venues:Venue;
skos:definition "Geographically fixed (with a street address) building"@en;
skos:prefLabel "Venue with fixed location"@en .
venues:Adult_cinema skos:altLabel "Sex cinema"@en, "Sexbioscoop"@nl, "x-rated cinema"@en;
skos:broader venues:niche_cinema;
skos:closeMatch <http://www.wikidata.org/entity/Q52815>;
skos:definition "Euphemistic term for a movie theater dedicated to the exhibition of pornographic films"@en;
skos:editorialNote "former term \"venues:Sex_cinema\" merged into this term"@en;
skos:prefLabel "Adult cinema"@en, "Seksbioscoop"@nl .
venues:Public_venue skos:broader venues:Venue;
skos:definition "A venue open to everyone"@en;
skos:prefLabel "Public venue"@en, "openbare ruimte"@nl .
venues:Private_venue skos:broader venues:Venue;
skos:closematch "ownership:private"@en;
skos:definition "A venue that provides restricted access to certain groups of people"@en;
skos:prefLabel "Private venue"@en, "besloten ruimte"@nl .
venues:Single_purpose_venue skos:broader venues:Venue;
skos:definition "A venue specifically dedicated to one activity"@en;
skos:prefLabel "Single purpose venue"@en .
venues:Teatro skos:broader venues:Venue;
skos:definition "In Latin America the word \"teatro\" is mostly used for live entertainment events and \"cine\" for film screenings, unlike American English which tend to use \"theatre\" also for movie venue"@en;
skos:prefLabel "Teatro"@en, "Teatro"@es;
schema:spatialCoverage "Latin America"@en .
venues:Single_screen_cinema skos:broader venues:Cinema;
skos:definition "Cinema with 1 screen."@en;
skos:prefLabel "Monosala"@it, "Single screen cinema"@en .
venues:Travelling_venue skos:altLabel "mobiele filmexploitatie"@nl, "reizende bioscoop"@nl;
skos:broader venues:Venue;
skos:definition "Mobile venue."@en;
skos:editorialNote "merge with \"venues:Travelling_cinema\"?"@en;
skos:prefLabel "Travelling venue"@en, "reisbioscoop"@nl .
venues:Saal skos:broader venues:Venue;
skos:definition "\"Saal\" as defined in the Early German Film Database: not a Kino, not a theatre and not a traveling cinema"@en;
skos:prefLabel "Saal"@en, "zaal"@nl .
venues:Venue_by_ownership skos:prefLabel "Venue by ownership"@en .
venues:Cinema_chain skos:broader venues:Venue_by_ownership;
skos:definition "Series of cinemas owned by a single owner or company."@en;
skos:editorialNote "former definition: In Sweden: independent cinemas owned by a private person or a smaller firm. A cinema chain would include travelling companies that traveled on a rotating schedule to a number of small locations. We changed to make the definition more generally applicable"@en;
skos:prefLabel "Cinema chain"@en, "bioscoopketen"@nl .
venues:Independent skos:broader venues:Venue_by_ownership;
skos:definition "Cinema ownership that is independant of large (integrated) cinema chains."@en;
skos:editorialNote "Former definition: In Sweden: Owned by a private person or a smaller firm. This kind of ownership could involve a single cinema or a chain of cinemas. The latter type of cinema would include travelling companies that traveled on a rotating schedule to a number of small locations. Definition modified to make more generally applicable"@en;
skos:prefLabel "Independent"@en, "onafhankelijk"@nl .
venues:Single_venue skos:broader venues:Venue_by_ownership;
skos:definition "A cinema not part of chain of cinemas either horizontally or vertically integrated companies"@en;
skos:prefLabel "Single venue"@en .
venues:Franchise skos:broader venues:Dependent;
skos:definition "an authorization granted by a government or company to an individual or group enabling them to carry out specified commercial activities, for example acting as an agent for a company's products"@en;
skos:prefLabel "Franchise"@en .
venues:Vertically_integrated_company skos:broader venues:Dependent;
skos:definition "Ownership of two or more branches in a company's supply chain, in the case of cinema this usually means control of at least 2 of 3 areas: exhibition, distribution and production"@en;
skos:prefLabel "Vertically integrated company"@en .
venues:Dependent skos:broader venues:Venue_by_ownership;
skos:prefLabel "Dependent"@en .
venues:Nieuwsbioscoop skos:altLabel "Nieuwsbioscoop"@de, "cineac"@nl, "newsreel cinema"@en;
skos:broader venues:Venue_by_programming;
skos:definition "Cinema specialised in the screening of newsreels"@en;
skos:prefLabel "Nieuwsbioscoop"@en, "journaaltheater"@nl .
venues:Mixed_programming_theatre_and_film skos:altLabel "Theatre and film"@es;
skos:broader venues:Cinema, venues:Theatre, venues:Venue_by_programming;
skos:prefLabel "Mixed programming theatre and film"@en .
venues:Venue_by_programming skos:prefLabel "Venue by programming"@en .
venues:Venue_by_opening_type skos:prefLabel "Venue by opening type"@en .
venues:Seasonal skos:broader venues:Venue_by_opening_type;
skos:definition "fluctuating or restricted according to the season or time of year."@en;
skos:prefLabel "Seasonal"@en, "seizoensgebonden"@nl .
venues:Year-round skos:broader venues:Venue_by_opening_type;
skos:definition "operational throughout the year"@en;
skos:prefLabel "Year-round"@en .
venues:Venues_by_category skos:prefLabel "Venues by category"@en .
venues:First_run skos:broader venues:Tier;
skos:definition "Cinema specialised in screening premiere films, available for public viewing for the first time in a certain geographical area"@en;
skos:prefLabel "First run"@en .
venues:Second_run skos:broader venues:Tier;
skos:definition "Cinema specialised in screening films for a second 'run', after the film has previously been screened for its first run in a different cinema in the same geographical area (city)."@en;
skos:prefLabel "Second run"@en .
venues:ECA-Rank skos:broader venues:Venues_by_category;
skos:prefLabel "ECA-Rank"@en .
venues:Intermediate skos:broader venues:ECA-Rank;
skos:prefLabel "Intermediate"@en .
venues:Elite skos:broader venues:ECA-Rank;
skos:prefLabel "Elite"@en .
venues:Minor skos:broader venues:ECA-Rank;
skos:prefLabel "Minor"@en .
venues:Inactive skos:broader venues:ECA-Rank;
skos:prefLabel "Inactive"@en .
venues:Major skos:broader venues:ECA-Rank;
skos:prefLabel "Major"@en .
venues:Category skos:broader venues:Venues_by_category;
skos:definition "(defined by Italian, UK or US authorities and pertains to the 'tier' of the cinema)"@en;
skos:prefLabel "Category"@de, "Category"@en .
venues:Tier skos:broader venues:Venues_by_category;
skos:prefLabel "Tier"@en .
venues:Repertory_cinema skos:broader venues:Venue_by_programming;
skos:definition "Venue which mainly programmes films out of regular distribution, such as significantly older films and 'classics'"@en;
skos:prefLabel "Repertory cinema"@en .
venues:Inbouwbioscoop skos:broader venues:Public_venue, venues:Venue_with_fixed_location;
skos:definition "Dutch term for early multiplex cinemas, where in the existing single-screen cinema multiple extra screenings rooms were created."@en;
skos:prefLabel "Inbouwbioscoop"@en .
venues:popup skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:definition "(spanish) Municipal buildings with cultural purposes. They promote collaborations with associations and collectives in the neighborhoods. A strong network in Spain that include cinema screening among their programmes"@en;
skos:prefLabel "Centro Cívico"@es, "popup"@en .
venues:Zaal skos:broader venues:venue_part;
skos:definition "ivan: iirc, a room that is part of a building where the room is used as a cinema but the building itself has a different purpose."@en;
skos:prefLabel "Zaal"@en .
venues:Porn_booth skos:broader venues:Adult_cinema, venues:video_booth;
skos:definition "Booth inside an adult cinema"@en;
skos:prefLabel "Porn booth"@en .
venues:rural_open_air_cinema_where_3rd_film_is_adult skos:broader venues:Adult_cinema,
venues:venue_by_location;
skos:prefLabel "rural open air cinema where 3rd film is adult"@en .
venues:Passage_cinema skos:definition "Cinema in a passage, \"underground\", often later becoming sex cinemas"@en;
skos:prefLabel "Passage cinema"@en .
venues:counterculture skos:broader venues:Venue_by_programming, venues:venue_by_audience_type;
skos:definition "eg Electric cinema, London"@en;
skos:prefLabel "counterculture"@en .
venues:Grindhouse_cinema skos:broader venues:Venue_by_programming;
skos:definition "eg Scala, London. Also shows porn and illegal films. Nickel cinema also example"@en;
skos:prefLabel "Grindhouse cinema"@en .
venues:Dirty_cinema skos:altLabel "fleapit cinema"@en;
skos:broader venues:venue_by_cleanliness;
skos:definition "Has actual dirt on the floor"@en;
skos:prefLabel "Dirty cinema"@en, "pidocchietto"@sv .
venues:Cityplex skos:broader venues:Multiplex;
skos:definition "4-7 screens close to city centre"@en;
skos:prefLabel "Cityplex"@en;
skos:scopeNote "Italy?"@en .
venues:Proto-multiplex skos:broader venues:Multiplex;
skos:definition "odeon cannon Roma or Milan?1986. includes food, shops etc, that stay open at night?"@en;
skos:prefLabel "Proto-multiplex"@en;
skos:scopeNote "Italy"@en .
venues:Italian_Multiplex skos:broader venues:Multiplex;
skos:definition "at least 8 screens, other measure activities that stay open till night (food, shops). eg Arcadia, Ostia"@en;
skos:prefLabel "Italian Multiplex"@en;
skos:scopeNote "Italy"@en .
venues:VR_cinema skos:broader venues:venue_by_equipment;
skos:prefLabel "VR cinema"@en .
<https://homernetwork.github.io/vocabulary/venues/3d/VR> skos:broader venues:venue_by_equipment;
skos:prefLabel "3d/VR"@en .
venues:2d skos:broader venues:venue_by_equipment;
skos:prefLabel "2d"@en .
<https://homernetwork.github.io/vocabulary/venues/sachelskino?> skos:broader venues:Multiplex,
venues:Single_screen_cinema, venues:venue_by_size;
skos:definition "monoscteen 1k seats divided into multiple screens germ 70s"@en;
skos:prefLabel "sachelskino?"@en .
venues:video_booth skos:broader venues:venue_part;
skos:prefLabel "video booth"@en .
venues:ghost_cinema skos:broader venues:venue_by_official_status;
skos:definition "not an official cinema, Tamil?"@en;
skos:prefLabel "ghost cinema"@en .
venues:miniplex skos:definition "3-7 rooms, statistical yearbook poland"@en;
skos:prefLabel "miniplex"@en .
venues:urban_cinema skos:broader venues:venue_by_location;
skos:definition "Denmark 40-45, cf Nordisk julie"@en;
skos:prefLabel "urban cinema"@en .
venues:rural_cinema skos:broader venues:venue_by_location;
skos:definition "kulie"@en;
skos:prefLabel "rural cinema"@en .
venues:premiere_cinema skos:broader venues:Venues_by_category;
skos:definition "julie"@en;
skos:prefLabel "premiere cinema"@en .
venues:news skos:broader venues:venue_by_purpose_of_screening;
skos:definition "daniela"@en;
skos:prefLabel "news"@en .
venues:educational skos:broader venues:venue_by_purpose_of_screening;
skos:definition "Foteini Klini"@en;
skos:prefLabel "educational"@en .
venues:low_priced skos:broader venues:venue_by_admission_requirements;
skos:definition "Foteini Klini"@en;
skos:prefLabel "low priced"@en .
venues:free_admission skos:broader venues:venue_by_admission_requirements;
skos:definition "Foteini Klini"@en;
skos:prefLabel "free admission"@en .
venues:permanent skos:broader venues:Venue;
skos:definition "Foteini Klini - permanent venue"@en;
skos:prefLabel "permanent"@en .
venues:deactivated skos:broader venues:venue_by_activity_status;
skos:definition "João Marques"@en;
skos:prefLabel "deactivated"@en .
venues:tea_garden skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:definition "daniela screenings 1980"@en;
skos:prefLabel "tea garden"@en .
venues:coffee_house skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:definition "Clara,Philip porn 1980s <- Ivan: I don't remember what this note meant exactly, maybe ask Clara and Philippe"@en;
skos:prefLabel "coffee house"@en .
venues:in_army_camp skos:definition "daniela"@en;
skos:prefLabel "in army camp"@en .
venues:house_of_culture skos:altLabel "casa de cultura"@es;
skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:definition "daniela"@en;
skos:prefLabel "house of culture"@en .
venues:soviet_cinema_category_1 skos:definition "Lina Kaminskaitė-Jančorienė"@fr,
"amount seating,better films, sometimes orchestra, first films, more rare films in towns and cities"@en;
skos:prefLabel "soviet cinema category 1"@en .
venues:soviet_cinema_category_2 skos:definition "Lina Kaminskaitė-Jančorienė"@fr,
"after first cat more remote cities and ttowns"@en;
skos:prefLabel "soviet cinema category 2"@en .
venues:soviet_cinema_category_3 skos:definition "Lina Kaminskaitė-Jančorienė"@fr,
"non theatriatrical exhibition space"@en;
skos:prefLabel "soviet cinema category 3"@en .
venues:media_salle skos:broader venues:Venue;
skos:prefLabel "media salle"@en .
venues:summer_cinema skos:broader venues:Seasonal;
skos:definition "Aydın Çam, Çiğdem Aksu Çam"@fr, "cinema operating in summer?"@en;
skos:prefLabel "summer cinema"@en .
venues:underground_cinema skos:broader venues:Venue_by_programming, venues:venue_by_audience_type;
skos:definition "Aynülhayat Uybadın"@fr, "‘Underground’ is a label applied to the outer fringes of the radical film spectrum: films whose form, subject matter, or both, challenge conventional cinematic habits."@en;
skos:editorialNote "https://www.rem.routledge.com/articles/underground-cinema#:~:text=%E2%80%98Underground%E2%80%99%20is%20a%20label%20applied%20to%20the%20outer,subject%20matter%2C%20or%20both%2C%20challenge%20conventional%20cinematic%20habits."@en;
skos:prefLabel "underground cinema"@en .
venues:getti_cinema skos:broader venues:Venue;
skos:definition "Aynülhayat Uybadın"@fr;
skos:prefLabel "getti cinema"@en .
venues:sinematek skos:broader venues:Venue;
skos:definition "Aynülhayat Uybadın"@fr, "unsure, related to https://en-sinematek.kadikoy.bel.tr/page/about-us ?"@en;
skos:prefLabel "sinematek"@en .
venues:winter_cinema skos:broader venues:Seasonal;
skos:definition "cinema operating in winter?"@en, "daniela"@fr;
skos:prefLabel "winter cinema"@en .
venues:film_set skos:broader venues:venues_used_for_shooting_films;
skos:definition "Serkan Şavk, Aydın Çam"@fr;
skos:prefLabel "film set"@en .
venues:traveling_theatres skos:broader venues:Travelling_cinema;
skos:definition "Serkan Şavk, Aydın Çam"@fr;
skos:prefLabel "traveling theatres"@en .
venues:brown-skinned_or_black skos:broader venues:venue_by_audience_type;
skos:definition "Talitha Ferraz"@fr, "from Talitha"@en;
skos:prefLabel "brown-skinned or black"@en .
venues:suburban_cinema skos:broader venues:venue_by_location;
skos:definition "Talitha Ferraz"@fr, "from Talitha - cinema in a suburban area"@en;
skos:prefLabel "suburban cinema"@en .
venues:favela_cinema skos:broader venues:venue_by_location;
skos:definition "Talitha Ferraz"@fr, "from Talitha - cinema in a favela"@en;
skos:prefLabel "favela cinema"@en;
skos:scopeNote "Brazil"@en .
venues:station_cınema skos:broader venues:venue_by_location;
skos:definition "clara"@fr, "from Clara, this should be a cinema in a train station"@en;
skos:prefLabel "station cınema"@en .
venues:tree_cinema skos:broader venues:Venue;
skos:definition "(question answer)"@fr, "Ivan: From Talitha, don't remember what it was exactly"@en;
skos:prefLabel "tree cinema"@en;
skos:scopeNote "Brazil"@en .
venues:coffee_house_cinema skos:broader venues:Venue;
skos:definition "(question answer)"@fr, "Ivan: from Talitha, it's a Brazilian modern thing. Not sure whether these are coffee houses acting like cinemas or the other way around"@en;
skos:prefLabel "coffee house cinema"@en;
skos:scopeNote "Brazil"@en .
<https://homernetwork.github.io/vocabulary/venues/ghost_cinema??> skos:broader venues:Cinema;
skos:definition "(question answer)"@fr, "Ivan: I think this came from Talitha, so I think this should be something like \"an abandoned cinema that remains in good condition\". Needs the correct PT term"@en;
skos:prefLabel "ghost cinema??"@en;
skos:scopeNote "Brazil"@en .
venues:cinema_with_retractable_roof skos:broader venues:Open-air_cinema;
skos:definition "François Beaurain- ENSA Paris la Villette)"@fr;
skos:prefLabel "cinema with retractable roof"@en .
venues:videoclub skos:broader venues:video_rental_store;
skos:definition "(screening room, usually TV or beamer w few benches), sometimes multiplex. But cf https://en.wikipedia.org/wiki/Videoclub"@en,
"François Beaurain- ENSA Paris la Villette)"@fr;
skos:prefLabel "videoclub"@en .
venues:videoclub_type_2_selling_pirated_dvds skos:broader venues:video_rental_store;
skos:definition "François Beaurain- ENSA Paris la Villette)"@fr, "sells pirated dvds"@en;
skos:prefLabel "videoclub type 2 selling pirated dvds"@en .
venues:movie_hall skos:broader venues:Cinema;
skos:definition "François Beaurain- ENSA Paris la Villette)"@fr;
skos:prefLabel "movie hall"@en .
venues:artist_studios skos:broader venues:Non-cinema_venues_used_for_screenings, venues:Private_venue;
skos:definition "François Beaurain- ENSA Paris la Villette)"@fr;
skos:prefLabel "artist studios"@en .
venues:entertainment_center skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:definition "François Beaurain- ENSA Paris la Villette)"@fr;
skos:prefLabel "entertainment center"@en .
venues:inbouwbioscoop skos:broader venues:Multiplex;
skos:definition """Een belangrijke ontwikkeling tenslotte is de inbouwbioscoop, die sinds 1971 sterk in
opkomst is: grote bioscoopgebouwen worden opgesplitst in afzonderlijke zalen en zaaltjes,
zodat er allerlei drie-in-een en vier-in-een theaters ontstaan."""@en,
"thunnis, dibbets"@fr;
skos:editorialNote "Dibbets, Karel. Bioscoopketens in Nederland: Economische Concentratie En Geografische Spreiding Van Een Bedrijfstak, 1928 - 1977. 1980."@en;
skos:prefLabel "inbouwbioscoop"@en .
venues:Traditional_monosala skos:broader venues:venue_by_style;
skos:definition "arianna"@fr;
skos:prefLabel "Traditional monosala"@en, "confinata in “spazi residuali legati alla posizione di monopolio locale o alla situazione generalmente tardiva di determinati contesti nazionali”;"@sv .
venues:Grande_Salle skos:broader venues:Single_screen_cinema, venues:venue_by_equipment;
skos:definition "arianna"@fr;
skos:prefLabel "Grande Salle"@en, "mono screen that maintained the original retro form;"@sv .
venues:High-tech_monosala skos:broader venues:venue_by_equipment;
skos:definition "arianna"@fr;
skos:prefLabel "High-tech monosala"@en, "with a best projection system."@sv .
venues:sound_cinema skos:broader venues:venue_by_equipment;
skos:definition "Morgan Corriou"@fr, "not a silent cinema"@en;
skos:prefLabel "sound cinema"@en .
venues:cafe skos:broader venues:catering_industry_venue;
skos:definition "Caroline Damiens"@fr;
skos:prefLabel "cafe"@en .
venues:restaurant skos:broader venues:catering_industry_venue;
skos:definition "Caroline Damiens"@fr;
skos:prefLabel "restaurant"@en .
venues:hotel skos:broader venues:catering_industry_venue;
skos:definition "Caroline Damiens"@fr;
skos:prefLabel "hotel"@en .
venues:multipurpose skos:broader venues:Venue;
skos:definition "Caroline Damiens"@fr;
skos:prefLabel "multipurpose"@en .
<https://homernetwork.github.io/vocabulary/venues/standard_gauge_(35mm)> skos:broader
venues:venue_by_equipment;
skos:prefLabel "standard gauge (35mm)"@en .
venues:dance_halls skos:broader venues:communal_building;
skos:definition "Caroline Damiens"@fr;
skos:prefLabel "dance halls"@en .
venues:ottoman_mosque skos:broader venues:religious_venue;
skos:definition "Mélisande Leventopoulos"@fr;
skos:prefLabel "ottoman mosque"@en .
venues:hamam skos:broader venues:bath_house;
skos:definition "Mélisande Leventopoulos"@fr;
skos:prefLabel "hamam"@en .
venues:niche_cinema skos:broader venues:Cinema;
skos:definition "specialty cinema"@en;
skos:prefLabel "niche cinema"@en .
venues:Jewish_neighborhood_movie_theatres skos:broader venues:culturally_regional_cinema;
skos:definition "Judith Thissen –"@fr;
skos:prefLabel "Jewish neighborhood movie theatres"@en .
venues:festival_venue skos:broader venues:Venue;
skos:definition "Claire Begbie"@fr;
skos:prefLabel "festival venue"@en .
<https://homernetwork.github.io/vocabulary/venues/labor_union_(venue)> skos:broader
venues:Non-cinema_venues_used_for_screenings;
skos:definition "Claire Begbie"@fr;
skos:prefLabel "labor union (venue)"@en .
<https://homernetwork.github.io/vocabulary/venues/mobile_cinema_vans_(partial_venue?)>
skos:broader venues:mobile_cinemas;
skos:prefLabel "mobile cinema vans (partial venue?)"@en .
venues:schools skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "schools"@en .
venues:exhibition_centres skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "exhibition centres"@en .
<https://homernetwork.github.io/vocabulary/venues/mule_drawn_cart_(partial)> skos:broader
venues:mobile_cinemas;
skos:prefLabel "mule drawn cart (partial)"@en .
venues:mobile_cinemas skos:broader venues:Travelling_cinema;
skos:definition "Foteini Klini"@fr;
skos:prefLabel "mobile cinemas"@en .
venues:permanent_cinema skos:broader venues:Cinema;
skos:prefLabel "permanent cinema"@en .
venues:movie_house skos:broader venues:Venue;
skos:prefLabel "movie house"@en .
venues:dedicated_Indian_cinema skos:broader venues:culturally_regional_cinema;
skos:prefLabel "dedicated Indian cinema"@en .
venues:VR_screenings skos:broader venues:Virtual_and_non-physical_cinema;
skos:prefLabel "VR screenings"@en .
venues:music_halls skos:broader venues:communal_building;
skos:prefLabel "music halls"@en .
venues:variety_hall skos:broader venues:communal_building;
skos:prefLabel "variety hall"@en .
venues:community_hall skos:broader venues:communal_building;
skos:prefLabel "community hall"@en .
venues:church skos:altLabel "church halls"@en;
skos:broader venues:religious_venue;
skos:definition "Foteini Klini"@en;
skos:prefLabel "church"@en .
venues:shop skos:broader venues:shopping_area;
skos:prefLabel "shop"@en .
venues:department_store skos:altLabel "mall"@en;
skos:broader venues:shopping_area;
skos:prefLabel "department store"@en, "winkelcentrum"@nl .
venues:religious_venue skos:broader venues:venue_by_building_purpose;
skos:prefLabel "religious venue"@en .
venues:commercial_cinema skos:broader venues:Cinema, venues:building_with_commercial_purpose;
skos:editorialNote "added to accomodate traveling cinema shows that showed commercial films"@en;
skos:prefLabel "commercial cinema"@en .
venues:culturally_regional_cinema skos:broader venues:venue_by_cultural_association;
skos:definition "catering to or showing films for/from a particular cultural group"@en;
skos:prefLabel "culturally regional cinema"@en .
venues:Non-cinema_venues_used_for_screenings skos:broader venues:venue_by_building_purpose;
skos:prefLabel "Non-cinema venues used for screenings"@en .
venues:church_hall skos:altLabel "parish hall"@en;
skos:broader venues:religious_venue;
skos:prefLabel "church hall"@en .
venues:Virtual_and_non-physical_cinema skos:prefLabel "Virtual and non-physical cinema"@en .
venues:reilgious_venue skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "reilgious venue"@en .
venues:shopping_area skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "shopping area"@en .
venues:bath_house skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "bath house"@en .
venues:communal_building skos:broader venues:Non-cinema_venues_used_for_screenings;
skos:prefLabel "communal building"@en .
venues:venue_by_equipment skos:broader venues:Venue;
skos:prefLabel "venue by equipment"@en .
venues:catering_industry_venue skos:broader venues:venue_by_building_purpose;
skos:prefLabel "catering industry venue"@en .
venues:building_with_commercial_purpose skos:broader venues:Venue;
skos:prefLabel "building with commercial purpose"@en .
venues:venue_by_cultural_association skos:broader venues:Venue;
skos:prefLabel "venue by cultural association"@en .
venues:venue_by_building_purpose skos:broader venues:Venue;
skos:prefLabel "venue by building purpose"@en .
venues:venue_by_style skos:broader venues:Venue;
skos:prefLabel "venue by style"@en .
venues:video_rental_store skos:broader venues:building_with_commercial_purpose;
skos:prefLabel "video rental store"@en .
venues:venue_by_location skos:broader venues:Venue;
skos:prefLabel "venue by location"@en .
venues:venue_by_audience_type skos:broader venues:Venue;
skos:prefLabel "venue by audience type"@en .
venues:venues_used_for_shooting_films skos:broader venues:Venue;
skos:prefLabel "venues used for shooting films"@en .
venues:garden skos:prefLabel "garden"@en .
venues:venue_by_activity_status skos:broader venues:Venue;
skos:definition "open, closed, abandoned, planned etc"@en;
skos:prefLabel "venue by activity status"@en .
venues:venue_by_admission_requirements skos:broader venues:Venue;
skos:definition "free, paid, membership etc"@en;
skos:prefLabel "venue by admission requirements"@en .
venues:venue_by_purpose_of_screening skos:broader venues:Venue;
skos:prefLabel "venue by purpose of screening"@en .
venues:venue_by_official_status skos:broader venues:Venue;
skos:prefLabel "venue by official status"@en .
venues:venue_part skos:definition "part of a venue. Could rooms go in here?"@en;
skos:prefLabel "venue part"@en .
venues:venue_by_size skos:broader venues:Venue;
skos:prefLabel "venue by size"@en .
venues:venue_by_cleanliness skos:broader venues:Venue;
skos:prefLabel "venue by cleanliness"@en .
venues:refugee_camp skos:broader venues:Venue;
skos:definition "İlke Şanlıer"@en;
skos:prefLabel "refugee camp"@en .
venues:campus skos:prefLabel "campus"@en .
venues:ghetto skos:prefLabel "ghetto"@en .
venues:Venue a skos:Concept .
venues:Kommunales_Kino a skos:Concept .
venues:Art_house_cinema a skos:Concept .
venues:Frontline_cinema a skos:Concept .
venues:Warehouses a skos:Concept .
venues:Multiplex a skos:Concept .
venues:School a skos:Concept .
venues:Open-air_cinema a skos:Concept .
venues:Folkets_Hus_Biografer a skos:Concept .
venues:Biograf a skos:Concept .
venues:Bioscope_theatre a skos:Concept .
venues:Cinema_theatre a skos:Concept .
venues:Kinematographentheater a skos:Concept .
venues:Cinematograph_theatre a skos:Concept .
venues:Club_house a skos:Concept .
venues:Commercial_building_converted_into_cinema a skos:Concept .
venues:Converted_premises a skos:Concept .
venues:Drive-in_cinema a skos:Concept .
venues:Electric_theatre a skos:Concept .
<https://homernetwork.github.io/vocabulary/venues/Kinematograf_(venue)> a skos:Concept .
venues:Multipurpose_venue a skos:Concept .
venues:Open-air a skos:Concept .
venues:Picture_House a skos:Concept .
venues:Picture_palace a skos:Concept .
venues:Picture_theatre a skos:Concept .
venues:Private_home a skos:Concept .
venues:Sala_cinematografica a skos:Concept .
venues:Stand-alone_purpose-built_venue a skos:Concept .
venues:Theatre a skos:Concept .
venues:Travelling_cinema a skos:Concept .
venues:Virtual_Venue a skos:Concept .
venues:Warehouse_building a skos:Concept .
venues:Streaming_Platform a skos:Concept .
venues:Cinema a skos:Concept .
venues:Tent a skos:Concept .
venues:Registered_cinema a skos:Concept .
venues:Venue_with_fixed_location a skos:Concept .
venues:Adult_cinema a skos:Concept .
venues:Public_venue a skos:Concept .
venues:Private_venue a skos:Concept .
venues:Single_purpose_venue a skos:Concept .
venues:Teatro a skos:Concept .
venues:Single_screen_cinema a skos:Concept .
venues:Travelling_venue a skos:Concept .
venues:Saal a skos:Concept .
venues:Venue_by_ownership a skos:Concept .
venues:Cinema_chain a skos:Concept .
venues:Independent a skos:Concept .
venues:Single_venue a skos:Concept .
venues:Franchise a skos:Concept .
venues:Vertically_integrated_company a skos:Concept .
venues:Dependent a skos:Concept .
venues:Nieuwsbioscoop a skos:Concept .
venues:Mixed_programming_theatre_and_film a skos:Concept .
venues:Venue_by_programming a skos:Concept .
venues:Venue_by_opening_type a skos:Concept .
venues:Seasonal a skos:Concept .
venues:Year-round a skos:Concept .
venues:Venues_by_category a skos:Concept .
venues:First_run a skos:Concept .
venues:Second_run a skos:Concept .
venues:ECA-Rank a skos:Concept .
venues:Intermediate a skos:Concept .
venues:Elite a skos:Concept .
venues:Minor a skos:Concept .
venues:Inactive a skos:Concept .
venues:Major a skos:Concept .
venues:Category a skos:Concept .
venues:Tier a skos:Concept .
venues:Repertory_cinema a skos:Concept .
venues:Inbouwbioscoop a skos:Concept .
venues:popup a skos:Concept .
venues:Zaal a skos:Concept .
venues:Porn_booth a skos:Concept .
venues:rural_open_air_cinema_where_3rd_film_is_adult a skos:Concept .
venues:Passage_cinema a skos:Concept .
venues:counterculture a skos:Concept .
venues:Grindhouse_cinema a skos:Concept .
venues:Dirty_cinema a skos:Concept .
venues:Cityplex a skos:Concept .
venues:Proto-multiplex a skos:Concept .
venues:Italian_Multiplex a skos:Concept .
venues:VR_cinema a skos:Concept .
<https://homernetwork.github.io/vocabulary/venues/3d/VR> a skos:Concept .
venues:2d a skos:Concept .
<https://homernetwork.github.io/vocabulary/venues/sachelskino?> a skos:Concept .
venues:video_booth a skos:Concept .
venues:ghost_cinema a skos:Concept .
venues:miniplex a skos:Concept .
venues:urban_cinema a skos:Concept .
venues:rural_cinema a skos:Concept .
venues:premiere_cinema a skos:Concept .
venues:news a skos:Concept .
venues:educational a skos:Concept .
venues:low_priced a skos:Concept .
venues:free_admission a skos:Concept .
venues:permanent a skos:Concept .