-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfragrant-spaces.ttl
More file actions
2596 lines (2410 loc) · 75.4 KB
/
fragrant-spaces.ttl
File metadata and controls
2596 lines (2410 loc) · 75.4 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 dct: <http://purl.org/dc/terms/> .
@prefix fr: <http://data.odeuropa.eu/vocabulary/fragrant-spaces/> .
@prefix iconclass: <http://iconclass.org/> .
@prefix olf: <http://data.odeuropa.eu/olfactory_objects/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix voc: <http://data.odeuropa.eu/vocabulary/> .
@prefix wd: <http://www.wikidata.org/entity/> .
@prefix wiki: <https://www.wikidata.org/wiki/> .
@prefix wordnet: <http://wordnet-rdf.princeton.edu/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
olf:112 skos:related fr:55 .
olf:118 skos:related fr:117 .
olf:165 skos:related fr:90 .
olf:189 skos:related fr:116 .
olf:200 skos:related fr:19 .
olf:231 skos:related fr:94 .
olf:36 skos:related fr:10 .
olf:454 skos:related fr:35 .
olf:68 skos:related fr:26 .
olf:78 skos:related fr:27 .
fr:1 a skos:Concept ;
skos:altLabel "Laboratorio alchemico"@it,
"Werkplaats van de alchemist"@nl ;
skos:broader fr:136 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Alchemist's workshop"@en,
"Atelier d'alchimie"@fr,
"Laboratorio dell'alchimista"@it,
"Alchemistenlab"@nl,
"Alkimistična delavnica"@sl .
fr:100 a skos:Concept ;
dct:bibliographicCitation "WNT: 't Was luguber-leeg in hun stamlokaal. Er hing oude stank van bedorven bier en sigaren-eindjes, Robbers, Gel. Fam. 83 [1909]."@nl ;
owl:sameAs wd:Q212198 ;
skos:altLabel "Birreria"@it,
"Lokal"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Pub"@en,
"Pub"@fr,
"Pub"@it,
"Kroeg"@nl,
"Pivnica"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Pubbsm.jpg> .
fr:103 a skos:Concept ;
dct:bibliographicCitation "WNT: De korte nacht had geen koelte meegebracht, en de dampkring was steeds bevangen, vol van den reuk der zandwegen, die voortwentelden tusschen het dorre zoomgras en de poeierige akkers, Vlaanderen 2, 361 [1904]."@nl ;
owl:sameAs wd:Q700143 ;
skos:altLabel "Route de terre"@fr,
"Carrareccia"@it,
"Mulattiera"@it ;
skos:broader fr:64 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Dirt road"@en,
"Chemin de terre"@fr,
"Strada sterrata"@it,
"Zandweg"@nl,
"Makadam"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Piste%20im%20Erongo.jpg> .
fr:105 a skos:Concept ;
dct:bibliographicCitation "WNT: Uit de openstaande bakkersdeuren walmde den vollen reuk van verschgebakken krentebrood, vlaaien en confijten, thiry, Hofken v. Ol. 107 [1910]."@nl ;
owl:sameAs wd:Q274393 ;
skos:altLabel "Panificio"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Bakery"@en,
"Boulangerie"@fr,
"Panetteria"@it,
"Bakkerij"@nl,
"Pekarna"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Feature.%20James%20P.%20Lloyd.%20Cake%20Baker%20BAnQ%20P48S1P09086.jpg> .
fr:106 a skos:Concept ;
dct:bibliographicCitation "WNT: Toen iemand er uit (t.w. uit een drukkerij) kwam walmde een weeë machinelucht mee, uit de donkere gang, robbers, Gel. Fam. 5 [1909]."@nl ;
owl:sameAs wd:Q47003909 ;
skos:altLabel "Fotokopirnica"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Print shop"@en,
"Imprimerie"@fr,
"Tipografia"@it,
"Drukkerij"@nl,
"Tiskarna"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:109 a skos:Concept ;
dct:bibliographicCitation "WNT: De Arabieren, dewelke in welriekend Arabien, gelukkig Arabien, en zommige deelen van woest en steenig Arabien, in vaste steden en onder hun eige Koningen, wetten, en burgerlyke opvoedinge, woonen, oefenen konsten en handwerken, V. Ranouw, Kab. 4, 269 [1720]."@nl,
"Wy verbeelden ons met hem te wandelen door een weelig landschap van Arkadia, of 't gelukkig Arabië, daar de Natuur haare zegeningen elk oogenblik verdubbelt, zonder de kalmte van dien welriekenden dampkring door eenig gedruisch van storm of onweêr te ontrusten, stijl, Lev. v. Punt 16 [1781]."@nl ;
owl:sameAs wd:Q31945 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Arabia"@en,
"Arabië"@nl,
"Arabija"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Empty%20quarter%20Arabia.PNG> .
fr:110 a skos:Concept ;
dct:bibliographicCitation "WNT: Wy verbeelden ons met hem te wandelen door een weelig landschap van Arkadia, of 't gelukkig Arabië, daar de Natuur haare zegeningen elk oogenblik verdubbelt, WNT: zonder de kalmte van dien welriekenden dampkring door eenig gedruisch van storm of onweêr te ontrusten, stijl, Lev. v. Punt 16 [1781]."@nl ;
owl:sameAs wd:Q168786 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Arcadia"@en,
"Arcadie"@fr,
"Arcadia"@it,
"Arcadië"@nl,
"Arkadija"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:113 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Coal Wagon"@en,
"Vagon za oglje"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:114 a skos:Concept ;
skos:altLabel "Chariot"@en,
"Postal Coach"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Dilligence"@en ;
skos:topConceptOf voc:fragrant-spaces .
fr:115 a skos:Concept ;
skos:altLabel "Stog"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Haystack"@en,
"Kopica sena"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:118 a skos:Concept ;
skos:broader fr:69 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Apartment"@en,
"Appartement"@fr,
"Appartamento"@it .
fr:119 a skos:Concept ;
skos:broader fr:107 ;
skos:definition "Kind of retail shop in Indonesia and the Netherlands"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Toko"@en,
"Toko"@nl .
fr:120 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Station"@en,
"Gare"@fr,
"Stazione"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:121 a skos:Concept ;
skos:altLabel "Local"@fr,
"Locaux"@fr,
"Posto"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Place"@en,
"Lieu"@fr,
"Luogo"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:123 a skos:Concept ;
skos:altLabel "District"@en ;
skos:broader fr:14 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Neighbourhood"@en,
"Quartier"@fr,
"Quartiere"@it .
fr:124 a skos:Concept ;
skos:altLabel "Latrine"@fr,
"Latrina"@it ;
skos:broader fr:117 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Toilet"@en,
"Toilettes"@fr,
"Gabinetto"@it .
fr:125 a skos:Concept ;
skos:broader fr:5 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Shore"@en,
"Bagnasciuga"@it .
fr:126 a skos:Concept ;
skos:altLabel "Village"@en,
"Localités"@fr ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Town"@en,
"Village"@fr,
"Paese"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:127 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Tropic"@en,
"Tropique"@fr,
"Tropico"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:131 a skos:Concept ;
skos:broader fr:53 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Chapel"@en,
"Chapelle"@fr,
"Cappella"@it .
fr:137 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Jail"@en,
"Prison"@fr,
"Prigione"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:138 a skos:Concept ;
skos:altLabel "Hotel"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Hotel"@en,
"Hotel"@fr,
"Albergo"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:17 a skos:Concept ;
owl:sameAs wd:Q1251750 ;
skos:altLabel "Destilleerderij"@nl,
"Žganjarna"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Brennerei"@de,
"Distillery"@en,
"Distillerie"@fr,
"Distilleria"@it,
"Distilleerderij"@nl,
"Destilarna"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/New%20Inventions%20of%20Modern%20Times%20-Nova%20Reperta-,%20The%20Invention%20of%20Distillation,%20plate%207%20MET%20DP841129.jpg> .
fr:18 a skos:Concept ;
skos:altLabel "Letamaio"@it,
"Mestvaalt"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Misthaufen"@de,
"Dungheap"@en,
"Tas de fumier"@fr,
"Mucchio di letame"@it,
"Mesthoop"@nl,
"Gnojišče"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:21 a skos:Concept ;
owl:sameAs wd:Q448030 ;
skos:altLabel "Valjarna sukna"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Walkmühle"@de,
"Fullery"@en,
"Foulon"@fr,
"Gualchiera"@it,
"Vollerij"@nl,
"Suknarna"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Fulling%20mill%20bockler.jpg> .
fr:28 a skos:Concept ;
owl:sameAs wd:Q1295201 ;
skos:altLabel "Kruidenwinkel"@nl,
"kruidenierswinkel"@nl,
"Špecerija"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Grocery"@en,
"Épicerie"@fr,
"Drogheria"@it,
"Kruidenier"@nl,
"Trgovina z živili"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/A%20grocery%20store%20in%20Cheung%20Hong%20Estate.jpg> .
fr:30 a skos:Concept ;
owl:sameAs wd:Q2485852 ;
skos:altLabel "Hooiakker"@nl ;
skos:broader fr:128 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Hayfield"@en,
"Champ de foin"@fr,
"Campo di fieno"@it,
"Hooiveld"@nl,
"Travnik"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Hayfield%20Church%20Street%200072.JPG> .
fr:31 a skos:Concept ;
skos:altLabel "Bottega"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Handicraft place"@en,
"Atelier"@fr,
"Laboratorio artigianale"@it,
"Werkplaats"@nl,
"Obrtniški prostor"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:34 a skos:Concept ;
owl:sameAs wd:Q36963 ;
skos:altLabel "Stilleven met wild/ wildstilleven"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Jagdszene"@de,
"Hunting scene"@en,
"Scène de chasse"@fr,
"Scena di caccia"@it,
"Jachttafereel"@nl,
"Lovski prizor"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Paul%20Childerley%20driven%20hunt%20Finland%2006.png> .
fr:42 a skos:Concept ;
owl:sameAs wd:Q59772 ;
skos:altLabel "Calchèra"@it,
"Forno da calce"@it,
"Kalkbranderij"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Lime Kiln"@en,
"Four à chaux"@fr,
"Calcara"@it,
"Kalkoven"@nl,
"Apneničarstvo"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/ForndeCalç.jpg> .
fr:47 a skos:Concept ;
owl:sameAs wd:Q62562206 ;
skos:altLabel "Palude"@it,
"Terreno paludoso"@it,
"Zona paludosa"@it,
"Barje"@sl ;
skos:broader fr:66 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Marshland"@en,
"Marécage"@fr,
"Acquitrino"@it,
"Moeras"@nl,
"Močvirje"@sl .
fr:6 a skos:Concept ;
owl:sameAs wd:Q131734 ;
skos:altLabel "Brewery"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Brauerei"@de,
"Beer Brewery"@en,
"Brasserie"@fr,
"Birrificio"@it,
"Bierbrouwerij"@nl,
"Pivovarna"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/8210%20Brewery%20in%20Abbaye%20Notre-Dame%20de%20Saint-Remy%20Rochefort%202007%20Luca%20Galuzzi.jpg> .
fr:61 a skos:Concept ;
skos:altLabel "Abattoir"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Slaughter house"@en,
"Abattoir"@fr,
"Mattatoio"@it,
"Slachthuis"@nl,
"Klavnica"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:62 a skos:Concept ;
owl:sameAs wd:Q201759 ;
skos:altLabel "Krotwoning"@nl,
"Revna četrt"@sl,
"favela"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Slum"@en,
"Bidonville"@fr,
"Baraccopoli"@it,
"Krottenwijk"@nl,
"Barakarsko naselje"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Mumbai%2003-2016%20105%20Bandra%20station%20surroundings.jpg> .
fr:65 a skos:Concept ;
owl:sameAs wd:Q227857 ;
skos:altLabel "Usine de sucre"@fr,
"Fabbrica dello Zucchero"@it,
"Suikerbranderij"@nl ;
skos:broader fr:23 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Sugar factory"@en,
"Sucrerie"@fr,
"Zuccherificio"@it,
"Suikerraffinaderij"@nl,
"Tovarna sladkorja"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Sugar%20plant%20dsc09052.jpg> .
fr:68 a skos:Concept ;
owl:sameAs wd:Q3515239 ;
skos:altLabel "Leerlooierij"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Tannery"@en,
"Tannerie"@fr,
"Conceria"@it,
"Looierij"@nl,
"Strojarna"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:7 a skos:Concept ;
owl:sameAs wd:Q2169265,
<https://www.geonames.org/ontology#S.CSTL> ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Bleaching field"@en,
"Champ de blanchiment"@fr,
"Bleekveld"@nl,
"Prostor za beljenje"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Fotothek%20df%20tg%200007587%20Textilverarbeitung%20%5E%20Bleichen.jpg> .
fr:70 a skos:Concept ;
dct:bibliographicCitation "WNT: Dog laat ons hier van afzien"@nl,
"op dat wy, met het doorsnuffelen der Paruikwinkelen, niet beneveld worden, door den reuk der Pomade, berkhey, N.H. 3, 693 [1773]."@nl ;
skos:altLabel "Negozio di parrucche"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Wig shop"@en,
"Perruquerie"@fr,
"Parrucchiere"@it,
"Pruikenwinkel"@nl,
"Trgovina z lasuljami"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:83 a skos:Concept ;
owl:sameAs wd:Q488444 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Anatomical theatre"@en,
"Théâtre anatomique"@fr,
"Teatro anatomico"@it,
"Anatomisch theater"@nl,
"Anatomsko gledališče"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Anatomical%20theatre%20Leiden.jpg> .
fr:85 a skos:Concept ;
skos:altLabel "Usine de savon"@fr,
"Fabbrica di Sapone"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Soap works"@en,
"Savonnerie"@fr,
"Saponificio"@it,
"Zeepziederij"@nl,
"Čistilnica"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:87 a skos:Concept ;
skos:altLabel "Jardin d'herbes médicinales"@fr,
"Orto medicinale"@it,
"Artsenijtuin"@nl,
"plantaadje"@nl,
"plantage"@nl ;
skos:definition "Garden for medical plants"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Medical garden"@en,
"Jardin médicinal"@fr,
"Giardino medicinale"@it,
"Medische tuin"@nl,
"Lekarniški vrt"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:91 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Tobacco spinning workshop"@en,
"Atelier de filature de tabac"@fr,
"Laboratorio di filatura del tabacco"@it,
"Tabaksspinnerij"@nl ;
skos:topConceptOf voc:fragrant-spaces .
fr:97 a skos:Concept ;
dct:bibliographicCitation "WNT: De reuk en smaak (wordt) aangedaan, in de verte zelfs van Kalkovens, Runmakerijen, Leertouwerijen enz., berkhey, N.H. 5, 401 [1805]."@nl ;
skos:definition "Run: Eikenschors (soms ook schors van andere boomen als berken, wilgen), inzonderheid (thans bepaaldelijk) in gemalen toestand, zooals zij, wegens het looizuur dat er in bevat is, in de leerlooierij wordt gebezigd"@nl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Run factory"@en,
"Runmakerij"@nl ;
skos:topConceptOf voc:fragrant-spaces .
fr:99 a skos:Concept ;
dct:bibliographicCitation "WNT: De reuk en smaak (wordt) aangedaan, in de verte zelfs van Kalkovens, Runmakerijen, Leertouwerijen enz., berkhey, N.H. 5, 401 [1805]."@nl ;
skos:altLabel "Chaufour"@fr,
"Calchera"@it,
"Forno da calce"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Limkiln"@en,
"Four à chaux"@fr,
"Calcara"@it,
"Kalkoven"@nl ;
skos:topConceptOf voc:fragrant-spaces .
iconclass: skos:closeMatch fr:104 .
<http://iconclass.org/,> skos:closeMatch fr:104 .
<http://iconclass.org/?> skos:closeMatch fr:43 .
iconclass:E skos:closeMatch fr:77 .
iconclass:M skos:closeMatch fr:95 .
iconclass:Q skos:closeMatch fr:53 .
iconclass:S skos:closeMatch fr:108 .
iconclass:T skos:closeMatch fr:101 .
wordnet:2955921 skos:exactMatch fr:16 .
wordnet:3031762 skos:exactMatch fr:35 .
wordnet:3793728 skos:exactMatch fr:89 .
wordnet:3959692 skos:exactMatch fr:53 .
wordnet:4088393 skos:exactMatch fr:92 .
wordnet:4381822 skos:exactMatch fr:88 .
olf:13 skos:related fr:2,
fr:63 .
olf:227 skos:related fr:71,
fr:92 .
olf:248 skos:related fr:32,
fr:76 .
olf:3 skos:related fr:4,
fr:59 .
fr:10 a skos:Concept ;
skos:altLabel "Fabbrica di cacao"@it ;
skos:broader fr:23 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Cacao factory"@en,
"Usine de cacao"@fr,
"Fabbrica di cioccolato"@it,
"Cacaofabriek"@nl,
"Tovarna kakava"@sl ;
skos:related olf:36 .
fr:122 a skos:Concept ;
skos:altLabel "Country"@en,
"Land"@en,
"Province"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:narrower fr:128 ;
skos:prefLabel "Countryside"@en,
"Campagne"@fr,
"Campagna"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:128 a skos:Concept ;
skos:broader fr:122 ;
skos:inScheme voc:fragrant-spaces ;
skos:narrower fr:30 ;
skos:prefLabel "Field"@en,
"Champ"@fr,
"Campo"@it .
fr:129 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:narrower fr:69 ;
skos:prefLabel "Building"@en,
"Bâtiments"@fr,
"Palazzi"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:130 a skos:Concept ;
skos:altLabel "Ciminiera"@it,
"Comignolo"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Chimney"@en,
"Cheminée"@fr,
"Camino"@it ;
skos:related fr:69 ;
skos:topConceptOf voc:fragrant-spaces .
fr:132 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Lake"@en,
"Lac"@fr,
"Lago"@it ;
skos:related fr:133 ;
skos:topConceptOf voc:fragrant-spaces .
fr:133 a skos:Concept ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Pond"@en,
"Étangs"@fr,
"Stagno"@it ;
skos:related fr:132 ;
skos:topConceptOf voc:fragrant-spaces .
fr:134 a skos:Concept ;
skos:altLabel "Convent"@en,
"Couvent"@fr,
"Convento"@it ;
skos:broader fr:53 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Monastery"@en,
"Monastère"@fr,
"Monastero"@it ;
skos:related fr:135 .
fr:135 a skos:Concept ;
skos:broader fr:117 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Refectory"@en,
"Réfectoire"@fr,
"Refettorio"@it ;
skos:related fr:134 .
fr:136 a skos:Concept ;
skos:altLabel "Workshop"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:narrower fr:1 ;
skos:prefLabel "Laboratory"@en,
"Laboratoire"@fr,
"Laboratorio"@it ;
skos:topConceptOf voc:fragrant-spaces .
fr:14 a skos:Concept ;
dct:bibliographicCitation "WNT: De heele stad is met stank vervuld, v. daleᴣ"@nl,
"Wat hadde dan die stadt anders gheweest dan eenen gruwelicken moortcuijl, dan eenen hoop greijs, viers, roocx, bloets, dooder lichamen ende stancx, v. vaernewijck, Ber. T. 2, 3 [1566]."@nl ;
owl:sameAs wd:Q515,
<https://www.geonames.org/ontology#P.PPLA> ;
skos:altLabel "Cité"@fr,
"Ambiente urbano"@it ;
skos:inScheme voc:fragrant-spaces ;
skos:narrower fr:123 ;
skos:prefLabel "Stadt"@de,
"City"@en,
"Ville"@fr,
"Città"@it,
"Stad"@nl,
"Mesto"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/NYC%20wideangle%20south%20from%20Top%20of%20the%20Rock.jpg> .
fr:16 a skos:Concept ;
owl:sameAs wd:Q1127296 ;
skos:altLabel "Mensa"@de,
"Gourde"@fr,
"Réfectoire Cafétéria"@fr,
"Refettorio"@it,
"Kantina"@sl ;
skos:broader fr:92 ;
skos:exactMatch wordnet:2955921 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Kantine"@de,
"Canteen"@en,
"Cantine"@fr,
"Mensa"@it,
"Kantine"@nl,
"Menza"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Military%20Canteen%207984.jpg> .
fr:2 a skos:Concept ;
skos:altLabel "Marché des animaux"@fr,
"Fiera"@it,
"Mercato del bestiame"@it,
"Veemarkt"@nl ;
skos:broader fr:45 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Animal market"@en,
"Marché aux bestiaux"@fr,
"Mercato degli animali"@it,
"Dierenmarkt"@nl,
"Živinski sejem"@sl ;
skos:related olf:13 .
fr:26 a skos:Concept ;
owl:sameAs wd:Q1188480 ;
skos:altLabel "Poissonerie"@fr,
"Mercato ittico"@it,
"Pescheria"@it,
"Visafslag"@nl,
"Ribarnica"@sl ;
skos:broader fr:45 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Fischmarkt"@de,
"Fish market"@en,
"Marché aux poissons"@fr,
"Mercato del pesce"@it,
"Vismarkt"@nl,
"Ribja tržnica"@sl ;
skos:related olf:68 ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/HAL%20fish%20market.jpg> .
fr:43 a skos:Concept ;
skos:broader fr:29 ;
skos:closeMatch <http://iconclass.org/?> ;
skos:definition "A greenhouse for lemons"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Limonaia"@en,
"Limonaia"@fr,
"Limonaia"@it,
"Limonaia"@nl .
fr:55 a skos:Concept ;
skos:altLabel "Industria dolciaria"@it ;
skos:broader fr:23 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Pastry factory"@en,
"Pâtisserie"@fr,
"Pasticceria"@it,
"Banketbakkerij"@nl,
"Tovarna peciva"@sl ;
skos:related olf:112 .
fr:71 a skos:Concept ;
owl:sameAs wd:Q55635949 ;
skos:broader fr:23 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Tobacco factory"@en,
"Usine de tabac"@fr,
"Fabbrica di Tabacco"@it,
"Tabaksfabriek"@nl,
"Tobačna tovarna"@sl ;
skos:related olf:227 .
fr:86 a skos:Concept ;
skos:altLabel "Vieille demeure"@fr ;
skos:broader fr:69 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Old House"@en,
"Vieille maison"@fr,
"Vecchia casa"@it,
"Oud huis"@nl,
"Stara hiša"@sl ;
skos:related olf:262 .
fr:88 a skos:Concept ;
owl:sameAs wd:Q34627,
<https://www.geonames.org/ontology#S.REST> ;
skos:broader fr:53 ;
skos:exactMatch wordnet:4381822 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Synagogue"@en,
"Synagogue"@fr,
"Sinagoga"@it,
"Synagoge"@nl,
"Sinagoga"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Eldridge%20Street%20Synagogue%20%2842773%29.jpg> .
fr:90 a skos:Concept ;
dct:bibliographicCitation "WNT: Sien, die in de plooien van 'r kleeren altijd de scherp goor-zure lucht meebracht van 'r azijn-makerij, schart.-ant., Sprotje 1, 29 [1905]."@nl ;
skos:altLabel "Fabbrica di aceto"@it ;
skos:broader fr:23 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Vinegar factory"@en,
"Usine de vinaigre"@fr,
"Acetificio"@it,
"Azijnmakerij"@nl,
"Kisarna"@sl ;
skos:related olf:165 .
fr:94 a skos:Concept ;
skos:altLabel "Pozzo di catrame"@it,
"Asfaltna jama"@sl ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Teergrube"@de,
"Tarpit"@en,
"Fosse à bitume"@fr,
"Fossa di catrame"@it,
"Teerput"@nl,
"Asfaltno jezero"@sl ;
skos:related olf:231 ;
skos:topConceptOf voc:fragrant-spaces .
iconclass:D skos:closeMatch fr:75,
fr:9 .
iconclass:F skos:closeMatch fr:41,
fr:84 .
olf:262 skos:related fr:67,
fr:86,
fr:95 .
fr:101 a skos:Concept ;
dct:bibliographicCitation "WNT: En al waer dit genoch tot een Godt-salich leven, Soo stelt daer evenwel de helsche pijn beneven, Vol vier, vol vlam, vol nacht, vol swaevel, peck, en stanck, Poirters, H. Herte 86."@nl ;
owl:sameAs wd:Q564 ;
skos:altLabel "Tartarus"@en ;
skos:closeMatch iconclass:1,
iconclass:T ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Hell"@en,
"Enfer"@fr,
"Inferno"@it,
"Hel"@nl,
"Pekel"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/William-Adolphe%20Bouguereau%20%281825-1905%29%20-%20Dante%20And%20Virgil%20In%20Hell%20%281850%29.jpg> .
fr:108 a skos:Concept ;
dct:bibliographicCitation "WNT: Als 't Weste windje door de Hoven zacht gaat weiden …: Wat moet zich dan een reuk door't Paradys verspreiden, Zo lieflyk vloeijende uit uw vriendelyken mond! luyken, Jezus en de Z. 18 [1678]."@nl ;
owl:sameAs wd:Q3363340 ;
skos:altLabel "Eden"@en ;
skos:closeMatch iconclass:1,
iconclass:S ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Paradise"@en,
"Paradis"@fr,
"Paradiso"@it,
"Paradijs"@nl,
"Raj"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Jan%20Brueghel%20de%20Oude%20en%20Peter%20Paul%20Rubens%20-%20Het%20aards%20paradijs%20met%20de%20zondeval%20van%20Adam%20en%20Eva.jpg> .
fr:35 a skos:Concept ;
dct:bibliographicCitation "WNT: (Mozes) leeft, hij groeit in deugd, in moed, Die straks, voor vunze kerkerwalmen, U Kanâns geuren aêmen doet, bogaers 1, 59 [1835]."@nl ;
owl:sameAs wd:Q16970,
<https://www.geonames.org/ontology#S.CH> ;
skos:broader fr:53 ;
skos:exactMatch wordnet:3031762 ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Kirche"@de,
"Church"@en,
"Eglise"@fr,
"Chiesa"@it,
"Kerk"@nl,
"Cerkev"@sl ;
skos:related olf:454 ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Basilica%20di%20San%20Pietro%20in%20Vaticano%20September%202015-1a.jpg> .
fr:11 a skos:Concept ;
owl:sameAs wd:Q12284 ;
skos:altLabel "Chenal"@fr,
"Naviglio"@it,
"Roggia"@it,
"Kanaal"@nl,
"Cev"@sl,
"prepust"@sl ;
skos:closeMatch iconclass:2,
iconclass:5,
iconclass:H ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Kanal"@de,
"Canal"@en,
"Canal"@fr,
"Canale"@it,
"Gracht"@nl,
"Kanal"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Corinth%20Canal%201.jpg> .
fr:73 a skos:Concept ;
owl:sameAs wd:Q532 ;
skos:altLabel "Villaggio"@it ;
skos:closeMatch iconclass:2,
iconclass:5,
iconclass:I ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Village"@en,
"Village"@fr,
"Paese"@it,
"Dorp"@nl,
"Vas"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Betley-%20The%20main%20road,%20looking%20north,%20the%20postmans%20bike%20at%20rest%20-%20geograph.org.uk%20-%20147874.jpg> .
fr:79 a skos:Concept ;
skos:altLabel "Circus"@en,
"Cirque"@fr,
"Fête foraine"@fr,
"Circo"@it,
"Giostre"@it,
"Luna Park"@it,
"Circus"@nl ;
skos:closeMatch iconclass:3,
iconclass:4,
iconclass:A ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Pleasure fair"@en,
"Foire d'amusement"@fr,
"Parco divertimenti"@it,
"Kermis"@nl,
"Sejem užitkov"@sl ;
skos:topConceptOf voc:fragrant-spaces .
iconclass:G skos:closeMatch fr:32,
fr:56,
fr:58,
fr:74 .
fr:112 a skos:Concept ;
skos:altLabel "Salotto"@it ;
skos:broader fr:117 ;
skos:closeMatch iconclass:1,
iconclass:2,
iconclass:4,
iconclass:A ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Living room"@en,
"Salon"@fr,
"Salone"@it,
"Dnevna soba"@sl .
fr:13 a skos:Concept ;
owl:sameAs wd:Q207652 ;
skos:broader fr:23 ;
skos:closeMatch iconclass:2,
iconclass:4,
iconclass:7,
iconclass:B ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Chemical industry"@en,
"Industrie Chimique"@fr,
"Industria chimica"@it,
"Chemische industrie"@nl,
"Kemična industrija"@sl ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/FEMA%20-%2037677%20-%20Aerial%20of%20a%20Louisiana%20oil%20refinary%20repaired%20since%20Katrina.jpg> .
fr:22 a skos:Concept ;
skos:altLabel "Stabilimenti e mulini sullo sfondo"@it ;
skos:closeMatch iconclass:2,
iconclass:4,
iconclass:5,
iconclass:I ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Factories and mills in landscape"@en,
"Usines, fabriques et moulins dans un paysage"@fr,
"Stabilimenti e mulini sul paesaggio"@it,
"Fabrieken en molens in landschap"@nl,
"Tovarne in mlini v pokrajini"@sl ;
skos:topConceptOf voc:fragrant-spaces .
fr:24 a skos:Concept ;
skos:altLabel "Officina di macchinari"@it ;
skos:broader fr:23 ;
skos:closeMatch iconclass:2,
iconclass:4,
iconclass:7,
iconclass:A ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Factory-interior"@en,
"Intérieur d'usine"@fr,
"Interno di una fabbrica"@it,
"Fabrieksinterieur"@nl,
"Notranje prostore tovarne"@sl .
fr:3 a skos:Concept ;
owl:sameAs wd:Q478515 ;
skos:altLabel "Dansfeest"@nl ;
skos:closeMatch iconclass:2,
iconclass:3,
iconclass:4,
iconclass:A ;
skos:definition "Formal dance"@en ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Ball"@de,
"Ball"@en,
"Bal"@fr,
"Ballo"@it,
"Balzaal"@nl,
"Plesna dvorana"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Bal%2018e%20siècle.jpg> .
fr:36 a skos:Concept ;
owl:sameAs wd:Q30022 ;
skos:altLabel "Cafe"@en,
"Inn"@en,
"Public house"@en,
"Bar"@it,
"Bottega del caffè"@it,
"Caffè"@it ;
skos:closeMatch iconclass:1,
iconclass:3,
iconclass:4,
iconclass:B ;
skos:inScheme voc:fragrant-spaces ;
skos:prefLabel "Kaffeehaus"@de,
"Coffee-house"@en,
"Café"@fr,
"Caffetteria"@it,
"Koffiehuis"@nl,
"Kavarna"@sl ;
skos:topConceptOf voc:fragrant-spaces ;
schema:image <https://commons.wikimedia.org/wiki/Special:FilePath/Café%20de%20Flore.jpg> .
fr:49 a skos:Concept ;
owl:sameAs wd:Q8502,
<https://www.geonames.org/ontology#T.MT>,
<https://www.geonames.org/ontology#T.MTS> ;
skos:altLabel "Mont"@fr,
"Monte"@it,
"Planina"@sl ;