-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
848 lines (700 loc) · 42.1 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Sparnatural - Visual SPARQL query builder</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,700|Open+Sans:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet" />
<!-- Font Awesome -->
<link rel="stylesheet" href="assets/fa/css/all.min.css" />
<!-- =======================================================
* Template Name: Avilon - v4.0.1
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body>
<!-- ======= Header ======= -->
<header id="header" class="fixed-top d-flex align-items-center header-transparent">
<div class="container d-flex justify-content-between align-items-center">
<div id="logo">
<h1><a href="index.html">Sparnatural</a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html"><img src="assets/img/logo.png" alt=""></a> -->
</div>
<nav id="navbar" class="navbar">
<ul>
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
<li><a class="nav-link scrollto" href="#about">About</a></li>
<li><a class="nav-link scrollto" href="#features">Features</a></li>
<li><a class="nav-link scrollto" href="#demos">Demos</a></li>
<li><a class="nav-link scrollto" href="#bibliography">Bibliography</a></li>
<li><a class="nav-link scrollto" href="#gallery">Gallery</a></li>
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
</div>
</header><!-- End Header -->
<!-- ======= Hero Section ======= -->
<section id="hero">
<div class="hero-text" data-aos="zoom-out">
<h2>Sparnatural</h2>
<p>Knowledge Graph Exploration for your end-users <em><small>(and for you !)</small></em></p>
<a href="#about" class="btn-get-started scrollto">Get Started</a>
</div>
<div class="product-screens">
<div class="product-screen-single" data-aos="fade-up" data-aos-delay="400">
<a href="assets/videos/screencast-full.gif"><img src="assets/videos/screencast-short.gif" alt="" width="1000px"></a>
</div>
<!--
<div class="product-screen-1" data-aos="fade-up" data-aos-delay="400">
<img src="assets/img/screencast-sparnatural-dbpedia-v3-en.gif" alt="" width="200px">
</div>
<div class="product-screen-2" data-aos="fade-up" data-aos-delay="200">
<img src="assets/img/screencast-sparnatural-dbpedia-v3-en.gif" alt="" width="800px">
</div>
<div class="product-screen-3" data-aos="fade-up">
<img src="assets/img/product-screen-3.png" alt="">
</div>
-->
</div>
</section><!-- End Hero Section -->
<main id="main">
<!-- ======= About Section ======= -->
<section id="about" class="section-bg">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h3 class="section-title">About Sparnatural</h3>
<span class="section-divider"></span>
<p class="section-description">
Sparnatural is a Typescript component that allows users to explore an RDF Knowledge Graph<br>
by building SPARQL queries intuitively. It is configurable to adapt to your knowledge graph ontology.
</p>
</div>
<div class="row">
<div class="col-lg-6 about-img" data-aos="fade-right" dat-aos-delay="100">
<img src="assets/img/about-img.png" alt="">
</div>
<div class="col-lg-6 content" data-aos="fade-left" dat-aos-delay="100">
<h2>How do <strong>you</strong> explore your knowledge graph ?</h2>
<p>
Maybe you have lists of entities. Or a search engine. Maybe you have facets. Maybe you even have data-visualisation. But can you explore your knowledge graph <em>really as a graph</em> ? This is what Sparnatural does.
</p>
<p>
Have you ever been frustrated by not being able to show - and to sell - all this nice structured data you have aggregated in your graph ? Sparnatural can demonstrate the value of heterogeneous data integration.
</p>
<p>
Are you looking for a solution that can <em>bring your knowledge graph to your end-users</em> ? Sparnatural is the right tool for this : it allows try-and-error interactions, it is visual, and it "gamifies" the knowledge graph experience.
</p>
</div>
</div>
</div>
</section><!-- End About Section -->
<!-- ======= Featuress Section ======= -->
<section id="features">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-8 offset-lg-4">
<div class="section-header">
<h3 class="section-title">End-User interface for <u>your</u> SPARQL endpoint</h3>
<span class="section-divider"></span>
</div>
</div>
<div class="col-lg-4 col-md-5 features-img">
<img src="assets/img/product-features.png" alt="" data-aos="fade-right">
</div>
<div class="col-lg-8 col-md-7 ">
<div class="row">
<div class="col-lg-6 col-md-6 box" data-aos="fade-up" data-aos-delay="100">
<div class="icon"><i class="fad fa-layer-group"></i></div>
<h4 class="title"><a href="">Adapt to <u>your</u> ontology</a></h4>
<p class="description">Sparnatural can be configured to adapt to your graph structure. You can hide some of the complexity of your graph, and simplify the navigation for your users. Configuration is made through an <strong>OWL ontology</strong>, fully <a href="https://docs.sparnatural.eu">documented</a>.</p>
</div>
<div class="col-lg-6 col-md-6 box" data-aos="fade-up" dat-aos-delay="100">
<div class="icon"><i class="fab fa-js-square"></i></div>
<h4 class="title"><a href="">Client-only (no additionnal server required)</a></h4>
<p class="description">Sparnatural is pure client javascript and can be <strong>plugged to any existing SPARQL endpoint</strong>, without additionnal server required.</p>
</div>
<div class="col-lg-6 col-md-6 box" data-aos="fade-up">
<div class="icon"><i class="fad fa-balance-scale"></i></div>
<h4 class="title"><a href="">Free and open-source</a></h4>
<p class="description">Sparnatural license is <strong>LGPL-3.0</strong>, which means you are free to integrate it in your website. Any modification you make <em>inside the source code</em> of Sparnatural needs to be distributed with the same license, or contributed to the original project.</p>
</div>
<div class="col-lg-6 col-md-6 box" data-aos="fade-up">
<div class="icon"><i class="fab fa-github"></i></div>
<h4 class="title"><a href="">Open-Source on Github</a></h4>
<p class="description">Sparnatural development is open and happens on the <strong><a href="https://github.com/sparna-git/Sparnatural">Github repository</a></strong>.</p>
</div>
<div class="col-lg-6 col-md-6 box" data-aos="fade-up">
<div class="icon"><i class="fad fa-list"></i></div>
<h4 class="title"><a href="">Fully customizable</a></h4>
<p class="description">Sparnatural offers different <strong>widgets for value selection</strong> : dropdown lists, ordered by occurrence count or alphabetically, autocomplete search fields, date pickers, tree widgets... this is all part of Sparnatural configuration.</p>
</div>
<div class="col-lg-6 col-md-6 box" data-aos="fade-up">
<div class="icon"><i class="fad fa-book"></i></div>
<h4 class="title"><a href="">Fully documentated</a></h4>
<p class="description">Sparnatural comes with complete <a href="https://docs.sparnatural.eu">documentation</a>.</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Featuress Section -->
<!-- ======= Call To Action Section ======= -->
<section id="call-to-action">
<div class="container">
<div class="row">
<div class="col-lg-3 text-center text-lg-start">
<h3 class="cta-title">Try & download</h3>
<p class="cta-text">Test one of the demo, or create your own demo page ! You can also download from Github and start using !</p>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" target="_blank" href="demos/demo-dbpedia-en/index.html?lang=en">Test DBPedia demo</a>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" href="#make-your-own">Create your own</a>
</div>
<div class="col-lg-3 cta-btn-container text-center">
<a class="cta-btn align-middle" target="_blank" href="https://github.com/sparna-git/Sparnatural/releases/latest">Download from Github</a>
</div>
</div>
</div>
<div class="row">
</div>
</section><!-- End Call To Action Section -->
<!-- ======= More Features Section ======= -->
<section id="demos" class="section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h3 class="section-title">Demos</h3>
<span class="section-divider"></span>
<p class="section-description"> </p>
</div>
<div class="row gy-4">
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-dbpedia-en/index.html?lang=en"><i class="fad fa-university"></i></a></div>
<h4 class="title"><a href="demos/demo-dbpedia-en/index.html?lang=en">DBPedia Museums</a></h4>
<p class="description">Museums, Artworks and Painters queried in <a href="http://fr.dbpedia.org/">French DBPedia</a>.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-legilux-v2/index.html"><i class="fad fa-scroll"></i></a></div>
<h4 class="title"><a href="demos/demo-legilux-v2/index.html">ELI : Legilux (Luxembourg legislation)</a></h4>
<p class="description">Legislation, EU transpositions, citations, modifications, abrogation links, from the <a href="https://data.legilux.public.lu">Legilux data platform</a>. The model is similar to the <a href="https://op.europa.eu/en/web/eu-vocabularies/dataset/-/resource?uri=http://publications.europa.eu/resource/dataset/eli">ELI ontology</a>.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-smt-cim10/index.html"><i class="fad fa-virus"></i></a></div>
<h4 class="title"><a href="demos/demo-smt-cim10/index.html">OWL : ICD-10 Medical terminology</a></h4>
<p class="description">Diseases of the <a href="https://smt.esante.gouv.fr/terminologie-cim-10/">ICD-10 terminology published in the French Multi-Terminology Server</a> in an OWL-based structure.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-elzeard/index.html"><i class="fad fa-seedling"></i></a></div>
<h4 class="title"><a href="demos/demo-elzeard/index.html">Vegetables Gardening</a></h4>
<p class="description">Plant characteristics from <a href="https://elzeard.co/">Elzeard</a> knowledge base</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-partitions/index.html"><i class="fad fa-file-music"></i></a></div>
<h4 class="title"><a href="demos/demo-partitions/index.html">CIDOC-CRM / Doremus : Music scores</a></h4>
<p class="description">Music scores from the <a href="https://www.citedelamusique.fr/francais/">Cité de la Musique / Philharmonie de Paris</a>, described using <a href="https://cidoc-crm.org/">CIDOC-CRM</a> and its <a href="https://data.doremus.org">Doremus</a> extension for music.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-smt-med"><i class="fad fa-pills"></i></a></div>
<h4 class="title"><a href="demos/demo-smt-med">Référentiel d'interopérabilité du médicament</a></h4>
<p class="description">Pharmaceutical Products (PhPID 1,2,3,4), Actual Medicinal Products, Packaged Products, Substances. See all details about the dataset in the <a href="https://smt.esante.gouv.fr/terminologie-ref_interop_med/">notice from the Serveur Multiterminologies</a>, and you can also <a href="https://smt.esante.gouv.fr/explorer-les-concepts/terminologie-ref_interop_med/?treeViewType=complete">browse the full content.</a></p>
</div>
</div>
</div>
</div>
</section>
<section id="uses" class="section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h3 class="section-title">Who uses Sparnatural ?</h3>
<span class="section-divider"></span>
<p class="section-description">Here some current deployments of Sparnatural<br>
Contact us if you want to appear in the list above</p>
</div>
<div class="row gy-4">
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="https://dati.camera.it/sparnatural/"><i class="fad fa-university"></i></a></div>
<h4 class="title"><a href="https://dati.camera.it/sparnatural/">dati.camera.it (Italian Parliament)</a></h4>
<p class="description">A Sparnatural project based on the data from the <a href="https://dati.camera.it">Chamber of Deputies of the Italian Parliament</a>.</p>
<p class="description">The Members' Camera open data portal promotes access, reuse and dissemination of Camera data.</b></p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="demos/demo-bnf/index.html"><i class="fad fa-book"></i></a></div>
<h4 class="title"><a href="demos/demo-bnf/index.html">FRBR/LRM : data.bnf.fr (French National Library)</a></h4>
<p class="description">Works, editions, authors, dates. The model is an <a href="https://repository.ifla.org/handle/123456789/40">LRM-like</a> custom model.</p>
<p class="description">This is now deployed in production at <b><a href="https://data.bnf.fr/sparnatural">https://data.bnf.fr/sparnatural</a></b></p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="https://sparna-git.github.io/sparnatural-demonstrateur-an/"><i class="fad fa-archive"></i></a></div>
<h4 class="title"><a href="https://sparna-git.github.io/sparnatural-demonstrateur-an/">Notarial archives kept by the Archives nationales of France, described using RiC-O</a></h4>
<p class="description">Descriptions of notarial archives, converted to a knowledge graph conforming to ICA <a href="https://www.ica.org/standards/RiC/ontology">Records in Contexts</a> ontology, using mainly the <a href="https://github.com/ArchivesNationalesFR/rico-converter">RiCO converter software</a></p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="http://openarchaeo.huma-num.fr/explorateur/home/"><i class="fad fa-archway"></i></a></div>
<h4 class="title"><a href="http://openarchaeo.huma-num.fr/explorateur/home/">Open Archaeo, semantic web platform for archaeological data</a></h4>
<p class="description">A deployment of Sparnatural here for the <a href="https://masa.hypotheses.org/">MASA consortium, </a>exploiting the archaeological triplestores paired with the <a href="https://www.cidoc-crm.org/">CIDOC</a> in a federated way.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="https://www.nakala.fr/sparnatural/"><i class="fad fa-graduation-cap"></i></a></div>
<h4 class="title"><a href="https://www.nakala.fr/sparnatural/">Huma-Num, French Very Large Research Infrastructure (IR*)</a></h4>
<p class="description">Dedicated to research data, <a href="https://www.huma-num.fr/">Huma-Num</a> infrastructure is devoted to Social Sciences and Humanities. Sparnatural component is querying <a href="https://nakala.fr/">NAKALA triplestore</a>.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="https://labs.kadaster.nl/demonstrators/querybuilder/"><i class="fad fa-map"></i></a></div>
<h4 class="title"><a href="https://labs.kadaster.nl/demonstrators/querybuilder/">The Netherlands' Cadastre</a></h4>
<p class="description">A Sparnatural project using <a href="https://www.kadaster.nl/about-us">the Dutch Kadaster's</a> knowledge graph combined with Triply's map plugin to display geo data.</p>
</div>
</div>
<div class="col-lg-6">
<div class="box">
<div class="icon"><a href="https://francearchives.gouv.fr/fr/requeteurnaturel"><i class="fad fa-archive"></i></a></div>
<h4 class="title"><a href="https://francearchives.gouv.fr/fr/requeteurnaturel">FranceArchives, the national aggregator of French archives</a></h4>
<p class="description">Sparnatural module here brings further assistance on querying <a href="https://francearchives.gouv.fr/en/article/334841641">RiC-O (Records in Contexts)</a> & <a href="https://schema.org/">schema.org</a> structured data.</p>
</div>
</div>
</div>
</section><!-- End Call To Action Section -->
<!-- ======= Section Environment ======= -->
<!--
<section id="make-your-own">
<div class="container">
<div class="section-header">
<h3 class="section-title">Make your own Sparnatural demo page</h3>
<span class="section-divider"></span>
<p class="section-description">You can easily build your own demo page from our template in 4 steps. The only prerequisite is to <em>know a SPARQL endpoint URL</em> to which the generated queries will be sent.</p>
</div>
<div>
<h2>1 - Create your configuration Spreadsheet</h2>
<p>
Build a new Google Spreadsheet using our template. Click the button below to copy the template to your own Google Drive account.<br/>
Your will use this spreadsheet to configure the classes, properties, icons, etc. of Sparnatural. More detailled documentation will come on how to fill in the spreadsheet.
</p>
<p>
<a href="https://docs.google.com/spreadsheets/d/1CtF8dTEOXEkNFLDRugOEco3LHmvAcEAds4thtX_fYpg/copy" target="_blank" class="btnGenerateForm">Get the Spreadsheet Template</a>
</p>
<h2>2 - Share your Spreadsheet</h2>
<p>
Once filled in, your spreadsheet needs to be publicly visible. You need to share it with the <em>"Anyone with the link = Viewer"</em> option. To do this, select the option <strong>Share</strong>.
</p>
<p>
<img src="assets/img/spreadsheets/share_.png" alt="Screenshot of Google Sheets showing location of 'Publish to web' menu option"></img>
</p>
<p>In the next window, click the <strong>"General access"</strong> button. Select the <em>"Anyone with the link"</em> option and press the "Done" button. </p>
<p>
<img src="assets/img/spreadsheets/share_config.png" alt="Screenshot of Google Sheets showing location of 'Publish to web' menu option"></img>
</p>
<p>After you close the window, copy the URL in your browser's address bar. You'll use this in the next step.</p>
<h2>3 - Generate your Sparnatural demo page</h2>
<p>
<strong>Copy/paste the Google Spreadsheet URL</strong> into the first field below. Enter the URL of your SPARQL endpoint in the second field. Then press the <strong>Generate</strong> button to generate the URL to your demo page.
</p>
<br/>
<div>
<form>
<label class="label_control">Google Spreadsheet URL
<input class="form-control" type="text" id="source-url" placeholder="e.g. https://docs.google.com/spreadsheets/d/.....">
<p id="source-url-message" class="note note-alert note-error"></p>
</label>
</form>
<br/>
<form>
<label class="label_control">SPARQL Endpoint URL
<input class="form-control" type="text" id="endpoint-source-url" placeholder="e.g. https://dbpedia.org/sparql" >
<p id="source-url-message" class="note note-alert note-error"></p>
</label>
</form>
<br/>
<a id="BtnGenerate" class="btnGenerateForm">Generate</a>
<p id="msg_error"></p>
</div>
<h2>4 - Share Link</h2>
<p>Use this link directly to your Sparnatural demo page, or click the button below to open it directly in a new tab.</p>
<form>
<textarea id="sharable-url" class="form-control" rows="3" type="text" readonly name="textplaceholder" value="" style="height:4rem;"></textarea>
<br/>
<div>
<a class="btnGenerateForm" id="btnOpenDemo" target="_blank">Open Sparnatural demo page</a>
</div>
</form>
</div>
</div><- end container ->
</section>
-->
<!-- ======= Clients Section ======= -->
<!--
<section id="clients">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-md-2">
<img src="assets/img/clients/openarchaeo.png" alt="">
</div>
<div class="col-md-2">
<img src="assets/img/clients/archives-nationales.png" alt="">
</div>
<div class="col-md-2">
<img src="assets/img/clients/client-3.png" alt="">
</div>
<div class="col-md-2">
<img src="assets/img/clients/client-4.png" alt="">
</div>
<div class="col-md-2">
<img src="assets/img/clients/client-5.png" alt="">
</div>
<div class="col-md-2">
<img src="assets/img/clients/client-6.png" alt="">
</div>
</div>
</div>
</section>
--><!-- End Clients Section -->
<!-- ======= Pricing Section ======= -->
<!--
<section id="pricing" class="section-bg">
<div class="container" data-aos="fade-up">
<div class="section-header">
<h3 class="section-title">Pricing</h3>
<span class="section-divider"></span>
<p class="section-description">Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque</p>
</div>
<div class="row">
<div class="col-lg-4 col-md-6">
<div class="box">
<h3>Free</h3>
<h4><sup>$</sup>0<span> month</span></h4>
<ul>
<li><i class="bi bi-check-circle"></i> Quam adipiscing vitae proin</li>
<li><i class="bi bi-check-circle"></i> Nec feugiat nisl pretium</li>
<li><i class="bi bi-check-circle"></i> Nulla at volutpat diam uteera</li>
<li><i class="bi bi-check-circle"></i> Pharetra massa massa ultricies</li>
<li><i class="bi bi-check-circle"></i> Massa ultricies mi quis hendrerit</li>
</ul>
<a href="#" class="get-started-btn">Get Started</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="box featured">
<h3>Business</h3>
<h4><sup>$</sup>29<span> month</span></h4>
<ul>
<li><i class="bi bi-check-circle"></i> Quam adipiscing vitae proin</li>
<li><i class="bi bi-check-circle"></i> Nec feugiat nisl pretium</li>
<li><i class="bi bi-check-circle"></i> Nulla at volutpat diam uteera</li>
<li><i class="bi bi-check-circle"></i> Pharetra massa massa ultricies</li>
<li><i class="bi bi-check-circle"></i> Massa ultricies mi quis hendrerit</li>
</ul>
<a href="#" class="get-started-btn">Get Started</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="box">
<h3>Developer</h3>
<h4><sup>$</sup>49<span> month</span></h4>
<ul>
<li><i class="bi bi-check-circle"></i> Quam adipiscing vitae proin</li>
<li><i class="bi bi-check-circle"></i> Nec feugiat nisl pretium</li>
<li><i class="bi bi-check-circle"></i> Nulla at volutpat diam uteera</li>
<li><i class="bi bi-check-circle"></i> Pharetra massa massa ultricies</li>
<li><i class="bi bi-check-circle"></i> Massa ultricies mi quis hendrerit</li>
</ul>
<a href="#" class="get-started-btn">Get Started</a>
</div>
</div>
</div>
</div>
</section>
--><!-- End Pricing Section -->
<!-- ======= Bibliography Section ======= -->
<section id="bibliography" class="section-bg">
<div class="container">
<div class="section-header">
<h3 class="section-title">Bibliography</h3>
<span class="section-divider"></span>
<p class="section-description">Videos, presentations and events featuring Sparnatural</p>
</div>
<ul class="bibliography-list">
<li id="eswc-2023">
<div class="entry"><i class="bi bi-chevron-right"></i>2023-05-28 - ESWC 2023</div>
<div id="bib1" class="show" data-bs-parent=".faq-list">
<p>
<a href="bibliography/20230528-ESWC/sparnatural-eswc-2023.pdf">Accepted short paper (5 pages)</a> at <a href="https://2023.eswc-conferences.org/">ESWC 2023 </a> (Extended Semantic Web Conference).
</p>
</div>
</li>
<li id="semweb.pro-2022">
<div class="entry"><i class="bi bi-chevron-right"></i><em>(fr)</em> 2022-11-08 - Semweb.pro</div>
<div id="bib1" class="show" data-bs-parent=".faq-list">
<p>
<a href="bibliography/20221108-semweb.pro/Sparnatural-ThomasFrancart-semwebpro-2022-v4.pptx">Presentation of Sparnatural</a> in French at the <a href="https://2022.semweb.pro">semweb.pro 2022</a> (in French), complemented by two screencasts videos : the <a href="https://youtu.be/-yEQdvtBvCg">screencast of the BNF demonstrator</a>, and the <a href="https://youtu.be/mdhllEKSkgs">screencast of the AN demonstrator</a>.
</p>
<p>The <a href="https://peertube.semweb.pro/w/pYYJweK8LhPfcfp8BPybvW"><b>video recording of the presentation</b></a> is available on the SemWeb.pro Peertube.</p>
</div>
</li>
<li id="restitution-an-bnf">
<div class="entry"><i class="bi bi-chevron-right"></i><em>(en)</em> 2022-06-17 - Return of experience on the project Sparnatural : a tool to explore cultural heritage knowledge graphs</div>
<div class="entry"><i class="bi bi-chevron-right"></i><em>(fr)</em> 17/06/2022 - Restitution du projet Sparnatural : un outil pour explorer des graphes de métadonnées culturelles</div>
<div id="bib1" class="show" data-bs-parent=".faq-list">
<p>
<em>(fr)</em>
Les Archives nationales, la BnF et le département du Numérique pour la transformation des politiques culturelles et l’administration des données [DEPNUM] du ministère de la Culture se sont associés en 2021 pour mener à bien un projet visant deux objectifs :<br/><br/>
</p>
<ul>
<li>1) développer une nouvelle version de Sparnatural, un éditeur open source de requêtes SPARQL (qui est le langage utilisé pour faire des recherches dans des graphes RDF) ;</li>
<li>2) mettre en place deux démonstrateurs web pleinement opérationnels, pour permettre l’exploration et la recherche intuitives dans des graphes de métadonnées culturelles grâce à des interfaces construites à l’aide de cet outil.</li>
</ul>
<p>
Le projet a été réalisé dans le cadre d’un marché public confié à la société Sparna.
La BnF (les responsables de data.bnf.fr) a donc construit avec Sparna un démonstrateur
web pour interroger l’ensemble de ses données RDF, soit tout le contenu de data.bnf.fr.
Les Archives nationales (le Lab, en concertation avec le département du Minutier central
des notaires des Paris) ont construit avec Sparna un démonstrateur web qui permet
d’interroger les métadonnées décrivant un tiers des archives notariales conservées aux
Archives nationales, qu’elles ont préalablement converties en RDF conformément à
l’ontologie RiC-O.
</p>
<p>
Les supports de la restitution sont disponibles en téléchargement :<br/><br/>
<ol>
<li>La <a href="bibliography/20220617-AN/PresentationSparnaturalWebsem_170622.pdf">présentation de la stratégie sémantique du ministère de la Culture</a></li>
<li>La <a href="bibliography/20220617-AN/20220617_Presentation_projet_Sparnatural_def.pdf">présentation du projet</a> : enjeux, déroulement, principaux résultats</li>
<li>La <a href="bibliography/20220617-AN/SPARNATURAL-ThomasFrancart-20220617.pdf">présentation de Sparnatural</a> : fonctionnalités, configuration, utilisation, futur du projet (et sa <a href="bibliography/20220617-AN/SPARNATURAL-ThomasFrancart-20220617.pptx">variante d'origine en PPT</a>)</li>
<li>Le <a href="bibliography/20220617-AN/Pres_databnf-Sparnatural_17-06-2022.pdf">démonstrateur de la BnF</a> : explorer les données de data.bnf.fr</li>
<li>Le <a href="bibliography/20220617-AN/20220617_presentation_demonstrateur_AN_def.pdf">démonstrateur des Archives nationales</a> : sémantiser et explorer les métadonnées des archives notariales</li>
<li>La <a href="bibliography/20220617-AN/2022-06-17_Presentation_SPARNATURAL_OpenArchaeo.pdf">présentation du projet OpenArchaeo</a></li>
</ol>
</p>
<p><em>(30/09/2022) :</em> <strong>L'enregistrement vidéo de l'évènement est maintenant <a href="https://www.dailymotion.com/playlist/x7ljp5">disponible sur la chaine DailyMotion des Archives Nationales</a>.</strong></p>
</div>
</li>
<li id="humanistica-2022">
<div class="entry"><i class="bi bi-chevron-right"></i><em>(fr)</em> 2022-05-21 - Colloque Humanistica</div>
<div id="bib1" class="show" data-bs-parent=".faq-list">
<p>
<a href="bibliography/20220521-Humanistica/Sparnatural Humanistica 21_05_2022.pdf">Presentation of Sparnatural</a> at the <a href="https://humanistica2022.sciencesconf.org/">Humanistica 2022</a> Colloque (in French)
</p>
</div>
</li>
<li id="europeana-2022">
<div class="entry"><i class="bi bi-chevron-right"></i><em>(fr + en)</em> 2022-03-01 - Europeana : Building the common European data space for cultural heritage together</div>
<div id="bib1" class="show" data-bs-parent=".faq-list">
<p>
<a href="https://youtu.be/93XV-SZD6tk">Video of presentation of Sparnatural</a> (French, subtitles in English) (6:50)
</p>
</div>
</li>
</ul>
</div>
</section><!-- End Frequently Asked Questions Section -->
<!-- ======= Gallery Section ======= -->
<section id="gallery">
<div class="container-fluid" data-aos="fade-up">
<div class="section-header">
<h3 class="section-title">Gallery</h3>
<span class="section-divider"></span>
<!-- <p class="section-description">...</p> -->
</div>
<div class="row no-gutters">
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/nakala1.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/nakala1.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/nakala2.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/nakala2.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/DutchKadaster.jpg" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/DutchKadaster.jpg" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/FranceArchives.jpg" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/FranceArchives.jpg" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/anf-demo-A.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/anf-demo-A.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/anf-demo-B.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/anf-demo-B.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/partitions.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/partitions.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/dbpedia.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/dbpedia.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/openarchaeo.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/openarchaeo.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/archives-nationales.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/archives-nationales.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/databnf.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/databnf.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/legilux.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/legilux.png" alt="">
</a>
</div>
</div>
<div class="col-lg-4 col-md-6">
<div class="gallery-item">
<a href="assets/img/gallery/semapps.png" data-gall="portfolioGallery" class="gallery-lightbox">
<img src="assets/img/gallery/semapps.png" alt="">
</a>
</div>
</div>
</div>
</div>
</section><!-- End Gallery Section -->
<!-- ======= Contact Section ======= -->
<section id="contact">
<div class="container" data-aos="fade-up">
<div class="row">
<div class="col-lg-4 col-md-4">
<div class="contact-about">
<a href="http://sparna.fr"><img src="assets/img/sparna.png" style="width:100%" /></a>
<p style="margin-top:10px;">Thomas Francart - Web of data and knowledge graph services. <br/>RDF OWL SPARQL SHACL SKOS FRBR CIDOC-CRM RIC-O</p>
<div class="social-links">
<a href="http://sparna.fr"><i class="bi bi-building"></i></a>
<a href="https://github.com/sparna-git/Sparnatural"><i class="bi bi-github"></i></a>
<a href="http://blog.sparna.fr"><i class="bi bi-journal-text"></i></a>
<a href="http://www.linkedin.com/in/thomasfrancart"><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
<div class="col-lg-3 col-md-4">
<div class="info">
<div>
<i class="bi bi-geo-alt"></i>
<p>30 rue André Theuriet<br/>37000 Tours - FRANCE</p>
</div>
<div>
<i class="bi bi-envelope"></i>
<p><a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div>
<i class="bi bi-building"></i>
<p><a href="http://sparna.fr/contact">http://sparna.fr/contact</a></p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End Contact Section -->
</main><!-- End #main -->
<a href="#" class="back-to-top d-flex align-items-center justify-content-center"><i class="bi bi-chevron-up"></i></a>
<!-- Vendor JS Files -->
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<!-- Template Main JS File -->
<script src="assets/js/main.js"></script>
<script type="text/javascript">
document.getElementById("BtnGenerate").onclick = function() {
//var input_link = document.getElementById('source-url').addEventListener("change",f_getURL);
var urlgSheet = document.getElementById('source-url');
var val_endpoint = document.getElementById('endpoint-source-url');
var urlString = "https://xls2rdf.sparna.fr/rest/convert";
var urlResult = "";
if(urlgSheet.value != "" && val_endpoint != ""){
var urlSheet = "";
if(urlgSheet.value.includes("/edit")){
urlSheet = urlgSheet.value.split("/edit")[0];
} else {
urlSheet = urlgSheet.value;
}
// Mime type of the RDF output format (e.g. "application/rdf+xml"). Turtle is returned by default
urlString += "?url="+ urlSheet + "/export?format=xlsx";
//Don't apply SKOS post-processings after conversion.
urlString += "&noPostProcessings=true";
var pageGeneric = "https://sparnatural.eu/demos/demo-generic"
var urlGeneral = pageGeneric + "?lang=en" + "&config=" + encodeURI(urlString) + "&endpoint=" + encodeURI(val_endpoint.value);
document.getElementById('sharable-url').value = urlGeneral;
document.getElementById('btnOpenDemo').setAttribute("href", urlGeneral);
return false;
}
};
</script>
</body>
</html>