-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdata.ttl
6498 lines (5082 loc) · 243 KB
/
data.ttl
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 dcterms: <http://purl.org/dc/terms/> .
@prefix envri: <http://envri.eu/ns/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix ns1: <https://www.wikidata.org/entity/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://envi.eu/ns/AccessControlledServices> rdfs:label "Access Controlled Services" .
<http://envri.eu/ns/10Years> rdfs:label "10 years" .
<http://envri.eu/ns/20Years> rdfs:label "20 years" .
<http://envri.eu/ns/50Years> rdfs:label "50 years" .
envri:APHIA rdfs:label "APHIA" .
envri:AccessContent rdfs:label "Access Content" .
envri:AccessData rdfs:label "Access Data" .
envri:AccessWithoutCosts rdfs:label "Access Without Costs" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.1> .
envri:AccountManually rdfs:label "Account Manually" .
envri:AdvancedEditing rdfs:label "Advanced Editing" .
envri:B2ACCESS rdfs:label "B2ACCESS" .
envri:BiodiversityCatalogue rdfs:label "Biodiversity catalogue" .
envri:CDISystem rdfs:label "CDI system" .
envri:CPAuth rdfs:label "ICOS Carbon Portal Auth" .
envri:DIVA rdfs:label "DIVA" .
envri:DMPonline rdfs:label "DMPonline" .
envri:DataDownload rdfs:label "download data" .
envri:DataExplorer rdfs:label "Data explorer" .
envri:DataUpload rdfs:label "upload data" .
envri:EPOS rdfs:label "EPOS" .
envri:EPOSAR rdfs:label "EPOSAR" .
envri:EPOSORFEUS rdfs:label "EPOS ORFEUS" .
envri:EUROBIS rdfs:label "EUROBIS" .
envri:EuroArgo rdfs:label "Euro-Argo" .
envri:FTPAccessProblems rdfs:label "problem with FTP access" .
envri:GAGlrLLX9 dcterms:creator envri:RziYrLCJvL ;
dcterms:date "2019-04-30"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAGlrVHrJ dcterms:creator envri:RTGyDJCkDL ;
dcterms:date "2019-09-03"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAZCrJWcJ dcterms:creator envri:RTwl2JCU29 ;
dcterms:date "2019-04-03"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAZlc9Kt9 dcterms:creator envri:Rzwl2LC5e9 ;
dcterms:date "2019-06-24"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAil29reJ dcterms:creator envri:RzZC29yrtV ;
dcterms:date "20190426"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAwYrL09mtV dcterms:creator envri:RAiCc9mJmXL ;
dcterms:date "2019-03-21"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GAwYrLFv9 dcterms:creator envri:RzGCcLlTt9 ;
dcterms:date "2019-06-29"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GFZYDLNXV dcterms:creator envri:RTiCDJy3e9 ;
dcterms:date "2019-04-16"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GFZlcVZtV dcterms:creator envri:RAZl2JyweL ;
dcterms:date "2019-03-11"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GFiYcLCcV dcterms:creator envri:RTiyDVYYrJ ;
dcterms:date "2019-03-29"^^xsd:date ;
dcterms:hasVersion "1.0"^^xsd:string .
envri:GFiycLAy4XV dcterms:creator envri:RAwycJNl1XV ;
dcterms:date "2019-04-01"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GTGCrVGfxtJ dcterms:creator envri:RFwycJ-60eJ ;
dcterms:date "2019-04-18"^^xsd:date ;
dcterms:hasVersion "1.0"^^xsd:string .
envri:GTZyrJnvL dcterms:creator envri:RAZC29l6tV ;
dcterms:date "2019-03-19"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GTiCcVe8UcV dcterms:creator envri:RzGy2JRpuDL ;
dcterms:date "2019-03-22"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GTiCrLPXV dcterms:creator envri:RAGYcLC-tJ ;
dcterms:date "2019-04-03"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GTwCD9tyitL dcterms:creator envri:RzGYr9SCwvL ;
dcterms:date "20190419"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GTwl2VCV7tJ dcterms:creator envri:RTwycVFL7eL ;
dcterms:date "2019-04-18"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:GzZlc9jeL dcterms:creator envri:RAiYD9yEtV ;
dcterms:date "2019-07-01"^^xsd:date ;
dcterms:hasVersion "1.0"^^xsd:string .
envri:GziYrLIeL dcterms:creator envri:RTGCr9CIeL ;
dcterms:date "2019-05-23"^^xsd:date ;
dcterms:hasVersion "1"^^xsd:string .
envri:Harmonization rdfs:label "harmonization" .
envri:ICOS rdfs:label "ICOS" .
envri:IMIS rdfs:label "IMIS" .
envri:IMIS_ID rdfs:label "IMIS ID" .
envri:Image rdfs:label "images" .
envri:LSR_URN rdfs:label "LSR URN" .
envri:LifeWatchMarine rdfs:label "LifeWatch (Marine)" .
envri:LocalIdentifier rdfs:label "LocalIdentifier" .
envri:MDA_ID rdfs:label "MDA ID" .
envri:ManualQA_QC rdfs:label "manual QA QC" .
envri:Marine rdfs:label "marine" .
envri:Marine-ID rdfs:label "Marine-ID",
"Marine.id" .
envri:MarineRegions rdfs:label "Marine regions" .
envri:MetadataImport rdfs:label "metadata import" .
envri:MetadataPublication rdfs:label "metadata publication" .
envri:MetadataRepository rdfs:label "metadata data repository" .
envri:MetadataTemplate rdfs:label "metadata template" .
envri:MetadataValidation rdfs:label "metadata validation" .
envri:NERCVocabularyService rdfs:label "NERC vocabulary service" .
envri:NVSP01 rdfs:label "NVS P01" .
envri:NVSP06 rdfs:label "NVS P06" .
envri:NetCDFEgoFormatMetadata rdfs:label "NetCDF EGO format metadata" .
envri:NetCDF_Metadata rdfs:label "NetCDF metadata" .
envri:NetCDF_OceansitesProfileMetadata rdfs:label "NetCDF Oceansites Profile metadata" .
envri:OAuthPairedEduGain rdfs:label "OAuth paired with eduGain" .
envri:Observations rdfs:label "observations" .
envri:OceanDataView rdfs:label "ODV" .
envri:QualityMnanagementFramework rdfs:label "quality management framework" .
envri:RAiCrV1fxt9 a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:NULL ;
envri:hasDataset <http://fridge-services.rm.ingv.it/co2/?mintime=2018-08-01T00:00:00.000Z&maxtime=2018-08-20T00:00:00.000Z&minlat=43&maxlat=43.7&minlon=12&maxlon=12.9&min_period=60&max_period=180¶m_name=co2_flux&inst_type=flux> ;
envri:hasDiscoveryPortal <http://fridge.rm.ingv.it/> ;
envri:hasRepository envri:RTZCcJkpQv9 ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RAiyr99VX9 a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RTwC2LCnJeL,
envri:RzwlDVqoJt9 ;
envri:hasDataset <http://www.vliz.be/en/imis?module=dataset&dasid=1606> ;
envri:hasDiscoveryPortal <http://www.marinedataarchive.org/> ;
envri:hasRepository envri:RAwCrJ7CVtV,
envri:RFGy29TLeL ;
envri:infrastructure <http://envri.eu/entity/QnEtqeTMQ> ;
skos:altLabel "LW (Marine) FAIR assessment"^^xsd:string .
envri:RAwCrVJDeJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAGC2Vc3rtL,
envri:RAwC2LJfMt9,
envri:RFGYrVjUreV,
envri:RFwY2VHRrXL,
envri:RzGYDLTTce9,
envri:RziYcJelSvJ ;
envri:hasDataset envri:NULL ;
envri:hasDiscoveryPortal <http://actris.nilu.no> ;
envri:hasRepository envri:RAZY2Jcv2XJ,
envri:RAwCcV4MXJ,
envri:RTGycLtJheL,
envri:RTilDLgYDe9,
envri:RzZYcJA6rtJ,
envri:RzwYrLT2eV ;
envri:infrastructure <http://envri.eu/entity/Q9BcgOzo4> ;
skos:altLabel "ACTRIS FAIR assessment"^^xsd:string .
envri:RFGC2L90vJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RFZYc99yIX9,
envri:RFZlcJGT0e9 ;
envri:hasDataset <https://doi.org/10.12770/90ae7a06-8b08-4afe-83dd-ca92bc99f5c0> ;
envri:hasDiscoveryPortal <https://www.seadatanet.org/Products> ;
envri:hasRepository envri:RFZycVA0XV,
envri:RziycLL9IvV ;
envri:infrastructure <http://envri.eu/entity/Qxf0zfFWR> ;
skos:altLabel "SDN FAIR assessment"^^xsd:string .
envri:RFGYDLE3UDL a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAiycV4vUD9 ;
envri:hasDataset <http://eida.geo.uib.no/fdsnws/dataselect/1/> ;
envri:hasDiscoveryPortal <http://epos-no.geo.uib.no:81/> ;
envri:hasRepository envri:RTiyr9I8WDL ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RFiCDJ9EtJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RTGlrLjCOt9 ;
envri:hasDataset <https://portal.verce.eu/irods-cloud-backend/download?path=/verce/home/aspinuso/verce/home/aspinuso/simulation_abruzzo_INGV00_1509028494117/home/aspinuso/788c055f-b2e8-41c0-a244-6c14e066a9ec/simulation_abruzzo_INGV00_1509028494117/simulation_abruzzo_INGV00_1509028494117_0/> ;
envri:hasDiscoveryPortal <https://portal.verce.eu/forward-modelling> ;
envri:hasRepository envri:RFiY2VTEvJ ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RFiycVElGv9 a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAwCcJ9zZtJ ;
envri:hasDataset <http://doi.org/10.25326/06> ;
envri:hasDiscoveryPortal <http://www.iagos-data.fr> ;
envri:hasRepository envri:RzwYD90CwXL ;
envri:infrastructure <http://envri.eu/entity/QgDVLQQS2> ;
skos:altLabel "IAGOS FAIR assessment"^^xsd:string .
envri:RFiyrVJfX9 a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAGC2Je96eL,
envri:RFwlcV6f6tJ,
ns1:Q513000 ;
envri:hasDataset envri:NULL ;
envri:hasDiscoveryPortal envri:NULL ;
envri:hasRepository envri:RFiYDJxUaX9,
envri:RzZyrLvAnXL,
envri:RzwCDVzae9 ;
envri:infrastructure <http://envri.eu/entity/Q84MqPmjE> ;
skos:altLabel "eLTER FAIR assessment"^^xsd:string .
envri:RFwyrLV-XL a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RTwlD9yl7eJ ;
envri:hasDataset <http://www.orfeus-eu.org/data/eida/> ;
envri:hasDiscoveryPortal <http://orfeus-eu.org/webdc3/> ;
envri:hasRepository envri:RFwlc9T-tV ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RTGYrVJbrL a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RFil2VpWbD9 ;
envri:hasDataset envri:NULL ;
envri:hasDiscoveryPortal <https://data-preproduction.inra.fr/dataverse> ;
envri:hasRepository envri:RziYrVzH29 ;
envri:infrastructure <http://envri.eu/entity/QRy7SOXs2> ;
skos:altLabel "ANAEE-France FAIR assessment"^^xsd:string .
envri:RTZycJLuDL a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAZlD9oyW2V,
envri:RFiYrVvfur9 ;
envri:hasDataset <https://data.npolar.no/dataset/a5c33604-42ea-42f0-a8cd-3a95f1efa9fc> ;
envri:hasDiscoveryPortal <https://data.npolar.no/dataset/> ;
envri:hasRepository envri:RFwYr9Tu2V,
envri:RTGl2JuLoc9 ;
envri:infrastructure <http://envri.eu/entity/QorUcf1SJ> ;
skos:altLabel "SIOS FAIR assessment"^^xsd:string .
envri:RdaTrustworthyDataRepository rdfs:label "RDA Trustworthy Data Repository" .
envri:RelevantMetadata rdfs:label "relevant metadata" .
envri:RzGCDJVpX9 a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAZYcV7oNeJ ;
envri:hasDataset <https://catalog.terradue.com//eop/gep-epos/profile/xml?uid=InW_CNR_IREA_20170211S1B_20180101S1B_RU11> ;
envri:hasDiscoveryPortal <https://catalog.terradue.com/gep-epos/search?format=atomeop> ;
envri:hasRepository envri:RzwYcVANe9 ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RzGCc9XCdXJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RFGyr9DAdX9 ;
envri:hasDataset <https://hdl.handle.net/11676/-ffoiHjX5NDN0Vq_fKuVmas0> ;
envri:hasDiscoveryPortal <https://data.icos-cp.eu/portal> ;
envri:hasRepository envri:RzilrL2yst9 ;
envri:infrastructure <http://envri.eu/entity/Q5NKGDX70> ;
skos:altLabel "ICOS FAIR assessment"^^xsd:string .
envri:RzGlr9LieV a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:Rziy2VeUGeJ ;
envri:hasDataset <https://www.orfeus-eu.org/fdsnws/station/1/query?network=IB> ;
envri:hasDiscoveryPortal <http://orfeus-eu.org/> ;
envri:hasRepository envri:RFilr9AGvV ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RzZYr9-LmXJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:Rzilc9Ja_vV ;
envri:hasDataset <http://seismology.resif.fr/#NetworkConsultPlace:Z3%5B2015-07-01T00:00:00.000000_2020-07-31T00:00:00.000000%5D> ;
envri:hasDiscoveryPortal <http://seismology.resif.fr/#WelcomePlace> ;
envri:hasRepository envri:RFZYDLd9meL ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:RzZyDL69qvV a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RFZY2LFW1t9 ;
envri:hasDataset <http://doi.org/10.17882/42182> ;
envri:hasDiscoveryPortal <http://www.argodatamgt.org/Access-to-data/Argo-data-selection> ;
envri:hasRepository envri:RzZCrJpL7v9 ;
envri:infrastructure <http://envri.eu/entity/QIqjnYHdF> ;
skos:altLabel "Euro-Argo FAIR assessment"^^xsd:string .
envri:RziC2VLAeJ a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RAGl2VDuFvJ,
envri:RTZyDLbATtJ ;
envri:hasDataset <https://www.eiscat.se/schedule/tape2.cgi?exp=manda_zenith_4.00v_SW&date=20140210> ;
envri:hasDiscoveryPortal <https://www.eiscat.se/schedule/> ;
envri:hasRepository envri:RAwlcLTzX9,
envri:RFZyD9DCAeV ;
envri:infrastructure <http://envri.eu/entity/QKi8ENKG8> ;
skos:altLabel "EISCAT FAIR assessment"^^xsd:string .
envri:RzwC2V9_XV a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RTZYrJIC5tV ;
envri:hasDataset <http://www.lifewatchitaly.eu/catalogue-of-resources?p_auth=LflU6bat&p_p_id=datasetsearch_WAR_lifewatchportlet&p_p_lifecycle=1&p_p_state=normal&p_p_mode=view&p_p_col_id=column-1&p_p_col_pos=2&p_p_col_count=3&_datasetsearch_WAR_lifewatchportlet_action=search> ;
envri:hasDiscoveryPortal <http://www.lifewatchitaly.eu/catalogue-of-resources> ;
envri:hasRepository envri:RFGYrJFKt9 ;
envri:infrastructure <http://envri.eu/entity/QnEtqeTMQ> ;
skos:altLabel "LifeWatch FAIR assessment"^^xsd:string .
envri:RzwYDV9l2V a envri:FAIRAssessment ;
envri:hasDataManagementPlans envri:RTiYcVMolcJ ;
envri:hasDataset <https://data.geoscience.earth/id/dataset/borehole> ;
envri:hasDiscoveryPortal <https://www.epos-ip.org/data-services/epos-prototype-portal> ;
envri:hasRepository envri:RzwyDVAyr9 ;
envri:infrastructure <http://envri.eu/entity/QD9kcMKyU> ;
skos:altLabel "EPOS FAIR assessment"^^xsd:string .
envri:SDNFramework rdfs:label "SDN framework" .
envri:Sextant-Si rdfs:label "Sextant-Si" .
envri:SubsettingMonthlySnapshots rdfs:label "subsetting monthly snapshots" .
envri:TaxonomicRegister rdfs:label "taxonmic register" .
envri:Time-heightProfiles rdfs:label "time-height profiles" .
envri:UUID-DOI rdfs:label "UUID-DOI" .
envri:WaveformMetadataSchema rdfs:label "Waveform metadata schema" .
envri:X509Certificate rdfs:label "X509 Certificate" .
envri:XLS rdfs:label "xls" .
envri:acronym rdfs:label "acronym" .
envri:allowsAccessWithoutCosts rdfs:label "allows access without costs" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.1> .
envri:allowsSearchEngineIndexing rdfs:label "allows search engine indexing" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:appliedDataPublishingSteps rdfs:label "applied data publishing steps" .
envri:categoriesAreDefinedInRegistries rdfs:label "categories are defined in registries" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I2> .
envri:contentAccessAuthorizationRequired rdfs:label "content access authorization required" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.2> .
envri:dataAccessibility rdfs:label "dataAccessibility" .
envri:dataFindability rdfs:label "dataFindability" .
envri:dataInteroperability rdfs:label "dataInteroperability" .
envri:dataIsAccessible rdfs:label "dataIsAccessible" .
envri:dataIsFindable rdfs:label "dataIsFindable" .
envri:dataIsReusable rdfs:label "dataIsReusable" .
envri:dataLicenseIri rdfs:label "dataLicenseIri" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.1> .
envri:dataLicensesInUse rdfs:label "data licenses in use" .
envri:dataProductsOffered rdfs:label "dataProductsOffered" .
envri:dataReusability rdfs:label "dataReusability" .
envri:dataSchemaIsRegistered rdfs:label "dataSchemaIsRegistered" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:distributedWorkflowsToolsUsed rdfs:label "distributedWorkflowsToolsUsed" .
envri:fairness rdfs:label "fairness" .
envri:gaps rdfs:label "gaps" .
envri:hasAccessMechanisms rdfs:label "hasAccessMechanisms" .
envri:hasAccessProtocolUrl rdfs:label "hasAccessProtocolUrl" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.1> .
envri:hasAllocation rdfs:label "hasAllocation" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:hasAuthenticationMethod rdfs:label "hasAuthenticationMethod" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.2> .
envri:hasCertificationMethods rdfs:label "hasCertificationMethods" .
envri:hasComplianceValidationService rdfs:label "hasComplianceValidationService" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.3> .
envri:hasConceptIri rdfs:label "hasConceptIri" .
envri:hasData rdfs:label "hasData" .
envri:hasDataHeaderMetadataTypes rdfs:label "hasDataHeaderMetadataTypes" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasDataManagementPlans rdfs:label "hasDataManagementPlans" .
envri:hasDataProcessing rdfs:label "hasDataProcessing" .
envri:hasDataset rdfs:label "hasDataset" .
envri:hasDiscoveryPortal rdfs:label "hasDiscoveryPortal" .
envri:hasDomain rdfs:label "hasDomain" .
envri:hasFormatName rdfs:label "hasFormatName" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasHarvestingMethods rdfs:label "hasHarvestingMethods" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasIri rdfs:label "hasIri" .
envri:hasLandingPage rdfs:label "hasLandingPage" .
envri:hasLocalSearchEngine rdfs:label "hasLocalSearchEngine" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:hasLocalSearchEngineUrl rdfs:label "hasLocalSearchEngineUrl" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:hasMachineReadableDatasetMetadata rdfs:label "hasMachineReadableDatasetMetadata" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F2> .
envri:hasMachineReadableProvenance rdfs:label "hasMachineReadableProvenance" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.2> .
envri:hasMetadata rdfs:label "hasMetadata" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F3> .
envri:hasMetadataFormatIri rdfs:label "hasMetadataFormatIri" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F2> .
envri:hasMetadataHeaders rdfs:label "hasMetadataHeaders" .
envri:hasMetadataLongevityPlan rdfs:label "hasMetadataLongevityPlan" .
envri:hasName rdfs:label "hasName" .
envri:hasPersistencyGuaranty rdfs:label "hasPersistencyGuaranty" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1> .
envri:hasPersistentPolicy rdfs:label "hasPersistentPolicy" .
envri:hasPolicies rdfs:label "hasPolicies" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.1> .
envri:hasPreferredFormat rdfs:label "hasPreferredFormat" .
envri:hasPrimaryStorageFormat rdfs:label "hasPrimaryStorageFormat" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasRepository rdfs:label "hasRepository" .
envri:hasRepositoryUrl rdfs:label "hasRepositoryUrl" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:hasSchema rdfs:label "hasSchema" .
envri:hasSchemaName rdfs:label "hasSchemaName" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasSchemaUrl rdfs:label "hasSchemaUrl" .
envri:hasSpecificationLanguage rdfs:label "hasSpecificationLanguage" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasTopic rdfs:label "hasTopic" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:hasVocabularies rdfs:label "hasVocabularies" .
envri:hasVocabularyIri rdfs:label "hasVocabularyIri" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I2> .
envri:inRegistries rdfs:label "inRegistries" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:includedMetadata rdfs:label "includedMetadata" .
envri:includesAccessPolicyStatements rdfs:label "includesAccessPolicyStatements" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.1> .
envri:includesMetadataSchema rdfs:label "includesMetadataSchema" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F2> .
envri:includesProvenanceFields rdfs:label "includesProvenanceFields" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F2> .
envri:infrastructure rdfs:label "infrastructure" .
envri:isAssigned rdfs:label "isAssigned" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F1> .
envri:isDomain rdfs:label "isDomain" .
envri:isMachineActionable rdfs:label "isMachineActionable" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:maintainsOwnUserDatabase rdfs:label "maintainsOwnUserDatabase" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.2> .
envri:metadataTypes rdfs:label "metadataTypes" .
envri:openAccessMetadata rdfs:label "openAccessMetadata" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.1> .
envri:otherAnalysisServicesOffered rdfs:label "otherAnalysisServicesOffered" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1> .
envri:persistentIdentifiersAreIncluded rdfs:label "persistentIdentifiersAreIncluded" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F3> .
envri:personIdentificationSystem rdfs:label "personIdentificationSystem" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.3> .
envri:relatesTo rdfs:label "relatesTo" .
envri:searchEngineIndexing rdfs:label "searchEngineIndexing" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:searchOnData rdfs:label "searchOnData" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:specialDataProcessingStepsApplied rdfs:label "specialDataProcessingStepsApplied" .
envri:supportedExportFormats rdfs:label "supportedExportFormats" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/I1> .
envri:supportsAccessTechnology rdfs:label "supportsAccessTechnology" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.1> .
envri:supportsExternalSearchEngineTypes rdfs:label "supportsExternalSearchEngineTypes" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:testFairness rdfs:label "testFairness" .
envri:usesAuthorisationTechnique rdfs:label "usesAuthorisationTechnique" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/A1.2> .
envri:usesDataLicenses rdfs:label "usesDataLicenses" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/R1.1> .
envri:usesIdentifier rdfs:label "usesIdentifier" .
envri:usesIdentifierSystem rdfs:label "usesIdentifierSystem" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F1> .
envri:usesORCIDinAAI rdfs:label "usesORCIDinAAI" .
envri:usesProvider rdfs:label "usesProvider" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F1> .
envri:usesSoftware rdfs:label "usesSoftware" ;
envri:relatesTo <https://w3id.org/fair/principles/terms/F4> .
envri:usesSpecificDataManagementPlanTools rdfs:label "usesSpecificDataManagementPlanTools" .
envri:usesSystem rdfs:label "usesSystem" .
envri:various rdfs:label "various" .
envri:website rdfs:label "website" .
envri:workflowFrameworksApplied rdfs:label "workflowFrameworksApplied" .
<http://envri.eu/ny/AutomaticQA_QC> rdfs:label "Automatic QA/QC" .
dcterms:creator rdfs:label "creator" .
dcterms:hasVersion rdfs:label "version" .
<http://www.oil-e.net/ontology/envri-rm.owl#ResearchInfrastructure> rdfs:label "research infrastructure" .
rdf:li rdfs:label "li" .
rdfs:label rdfs:label "label" .
skos:altLabel rdfs:label "alternative label" .
<http://www.wikidata.org/entity/Baaa> rdfs:label "Apache HTTP Server" .
<http://www.wikidata.org/entity/Q671224> rdfs:label "Data center" .
<http://www.wikidata.org/entity/Q8104> rdfs:label "Atmosphere" .
foaf:mbox rdfs:label "mbox" .
foaf:name rdfs:label "name" .
<https://www.wikidata.org/entity/Property:P2699> rdfs:label "URL" .
ns1:Q1294021 rdfs:label "OpenSearch" .
ns1:Q1503337 rdfs:label "Geoportal" .
ns1:Q1543547 rdfs:label "stewardship" .
ns1:Q180160 rdfs:label "Metadata" .
ns1:Q2 rdfs:label "earth" .
ns1:Q20202982 rdfs:label "Web API" .
ns1:Q215819 rdfs:label "Microsoft SQL Server" .
ns1:Q3250078 rdfs:label "depth" .
ns1:Q37813 rdfs:label "ecosystem" .
ns1:Q3788827 rdfs:label "ISO/TC 211" .
ns1:Q604063 rdfs:label "World Register of Marine Species" .
ns1:Q61782522 rdfs:label "data interoperability standard" .
ns1:Q6459954 rdfs:label "Life Science Identifier" .
ns1:Q6498684 rdfs:label "ownership" .
ns1:Q73747105 rdfs:label "UUID version 4" .
ns1:Q840625 rdfs:label "shibboleth" .
ns1:Q899388 rdfs:label "Data Security" .
envri:ActrisAccess rdfs:label "ACTRIS Access" .
envri:Aggregations rdfs:label "Aggregations" .
envri:Anaee-ENVRISemanticPipelines rdfs:label "Anaee-ENVRI semantic pipelines" .
envri:ArgoUserManual rdfs:label "Argo user namual" .
envri:B2HANDLE rdfs:label "B2HANDLE" .
envri:B2SAFE rdfs:label "B2SAFE" .
envri:BiologicalPrimaryData rdfs:label "Biological primary data" .
envri:CF-1.4 rdfs:label "Climate and Forecast Metadata Conventions 1.4" .
envri:ChamberExperiments rdfs:label "Chamber experiments" .
envri:Checksum rdfs:label "Checksum" .
envri:CommunityStandardisedScripts rdfs:label "Community standardised scripts" .
envri:Comparison rdfs:label "comparison" .
envri:ComplexAuthorisationMechanisms rdfs:label "complex authorisation mechanisms" .
envri:DEIMS-SDR rdfs:label "DEIMS-SDR" .
envri:DOIGeneration rdfs:label "DOI generation" .
envri:DataGenerationTools rdfs:label "Data generation tools" .
envri:DataOriginator rdfs:label "Data originator" .
envri:DataProcess rdfs:label "data process" .
envri:DataProcessingStepsRecorded rdfs:label "data processing steps recorded" .
envri:DataProvider rdfs:label "Data provider" .
envri:DataUsageLicense rdfs:label "data usage license" .
envri:DataValidationAgainstCodeLists rdfs:label "data validation against code lists" .
envri:DataValidationAgainstXSD rdfs:label "data validation against XSD" .
envri:DistributionLink rdfs:label "distribution link" .
envri:EDFASCII rdfs:label "EDF ASCII" .
envri:EDMED rdfs:label "EDMED" .
envri:EuropeanGeoscienceRegistry rdfs:label "European Geoscience Registry" .
envri:FDSNStation rdfs:label "FDSN station" .
envri:FairsharingOrg rdfs:label "fairsharing.org" .
envri:FileChecksum rdfs:label "file checksum" .
envri:FileLocation rdfs:label "file location" .
envri:GCMD rdfs:label "GCMD" .
envri:GCMD-DIF rdfs:label "GCMD-DIF" .
envri:GeoDCAT rdfs:label "GeoDCAT" .
envri:Geoportal rdfs:label "GEO Portal",
"Geo portal" .
envri:GeospatialDatasets rdfs:label "geospatial datasets" .
envri:GriddedFields rdfs:label "gridded fields" .
envri:HDF rdfs:label "HDF" .
envri:HTTPURI rdfs:label "HTTP URI" .
envri:HandlePIDSuffix rdfs:label "Handle PID suffix" .
envri:IRSpectra rdfs:label "IR spectra" .
envri:ISO19119 rdfs:label "ISO 19119" .
envri:ImprovementsInSubsettingAccess rdfs:label "impovements in subsetting access" .
envri:IntegratedStandardisedDatasets rdfs:label "integrated standardised datasets" .
envri:JupiterNotebooks rdfs:label "Jupiter Notebooks" .
envri:LifeWatchVirtualLab rdfs:label "LifeWatch virtual lab" .
envri:LocalSchema rdfs:label "local schema" .
envri:MapViewer rdfs:label "map viewer" .
envri:MassSpectra rdfs:label "mass spectra" .
envri:MedatlasASCII rdfs:label "Medatlas ASCII" .
envri:Mesoclimate rdfs:label "mesoclimate" .
envri:MetadataChecking rdfs:label "metadata checking" .
envri:ModelDataObservation rdfs:label "model data observation" .
envri:ModellingTools rdfs:label "modelling tools" .
envri:NWPmodelEvaluationService rdfs:label "NWP model evaluation service" .
envri:NasaAmes rdfs:label "Nasa Ames" .
envri:NetAPP rdfs:label "NetAPP" .
envri:NetCDF_CFArgo rdfs:label "NetCDF CF Argo" .
envri:NetCDF_CFChecker rdfs:label "NetCDF CF checker" .
envri:NoPublicCatalogue rdfs:label "no public catalogue" .
envri:OBIS rdfs:label "OBIS" .
envri:ODVASCII rdfs:label "ODV ASCII" .
envri:ODVAggregation rdfs:label "ODV aggregation" .
envri:OGCServicesStack rdfs:label "OGC services stack" .
envri:OccuranceData rdfs:label "occurance data" .
envri:OctetStream rdfs:label "octet-stream" .
envri:OpenGIS rdfs:label "openGIS" .
envri:PDC rdfs:label "PDC" .
envri:PIDReplica rdfs:label "PID replica" .
envri:Pangeo rdfs:label "Pangeo" .
envri:ProvO rdfs:label "PROV-O" .
envri:QuakeEvent rdfs:label "quake event" .
envri:QuakeML rdfs:label "quakeML" .
envri:QualityDescription rdfs:label "quality description" .
envri:RAGC29qor9 a rdf:Bag ;
rdf:li ns1:Q1361922 .
envri:RAGC29tUPX9 a envri:Stations,
ns1:Q42848 ;
envri:dataSchemaIsRegistered envri:NULL ;
envri:hasPreferredFormat envri:RTwyr9Ru7v9 ;
skos:altLabel "EPOS European Federated Data Archive data"^^xsd:string .
envri:RAGC2JbFReL a envri:IRSpectra,
ns1:Q42848 ;
envri:dataSchemaIsRegistered envri:planned ;
envri:hasPreferredFormat envri:RTiYrVCTMeL ;
skos:altLabel "ACTRIS ASC data"^^xsd:string .
envri:RAGC2Je96eL envri:appliedDataPublishingSteps "['manual QA QC']"^^xsd:string ;
envri:hasComplianceValidationService envri:NULL ;
envri:usesSpecificDataManagementPlanTools envri:none ;
skos:altLabel "DEIMS-SDR data management plans"^^xsd:string .
envri:RAGC2Jeupv9 envri:categoriesAreDefinedInRegistries "false"^^xsd:bool ;
envri:hasHarvestingMethods envri:none ;
envri:hasLocalSearchEngineUrl <https://catalog.terradue.com/gep-epos/search?format=atomeop> ;
envri:hasMachineReadableDatasetMetadata envri:NULL ;
envri:hasMachineReadableProvenance "false"^^xsd:bool ;
envri:hasMetadataLongevityPlan envri:NULL ;
envri:hasPrimaryStorageFormat ns1:Q2115 ;
envri:hasSchema envri:RziYrLDopeV ;
envri:includesAccessPolicyStatements "true"^^xsd:bool ;
envri:isMachineActionable "true"^^xsd:bool ;
envri:persistentIdentifiersAreIncluded "true"^^xsd:bool ;
envri:searchEngineIndexing envri:NULL ;
envri:supportedExportFormats envri:RAwY2JOW3eL ;
envri:supportsExternalSearchEngineTypes envri:NULL ;
skos:altLabel "EPOS Terradue metadata"^^xsd:string .
envri:RAGC2JflDV a rdf:Bag ;
rdf:li envri:OGCServicesStack .
envri:RAGC2LBUKtJ a rdf:Bag ;
rdf:li envri:EML2.0,
ns1:Q2063 .
envri:RAGC2Vc3rtL envri:appliedDataPublishingSteps "['data published on CERA']"^^xsd:string ;
envri:hasComplianceValidationService "false"^^xsd:bool ;
envri:usesSpecificDataManagementPlanTools envri:none ;
skos:altLabel "EARLINET Database data management plans"^^xsd:string .
envri:RAGCDV5U8X9 a envri:none ;
envri:hasName envri:none ;
envri:hasSpecificationLanguage envri:NULL ;
envri:hasTopic envri:none ;
envri:hasVocabularyIri envri:NULL ;
skos:altLabel "EPOS Terradue vocabularies"^^xsd:string .
envri:RAGCcJ8WGv9 a rdf:Bag ;
rdf:li envri:EposICS .
envri:RAGCcL1oMXV a rdf:Bag ;
rdf:li <http://envri.eu.ns/StandardNetCdfCFHeaders> .
envri:RAGCcVRWmvV a rdf:Bag ;
rdf:li envri:TextOnly .
envri:RAGCr9ouUc9 a ns1:Q42848,
ns1:Q7833059 ;
envri:dataSchemaIsRegistered envri:none ;
envri:hasPreferredFormat envri:RFwy2J9WocL ;
skos:altLabel "SIOS Norwegian Meteorological Institute data"^^xsd:string .
envri:RAGCrJLucvV envri:categoriesAreDefinedInRegistries "false"^^xsd:bool ;
envri:hasHarvestingMethods envri:none ;
envri:hasLocalSearchEngineUrl <http://actris.nilu.no> ;
envri:hasMachineReadableDatasetMetadata envri:none ;
envri:hasMachineReadableProvenance "false"^^xsd:bool ;
envri:hasMetadataLongevityPlan envri:none ;
envri:hasPrimaryStorageFormat ns1:Q192588 ;
envri:hasSchema envri:RFiYr9AW2X9 ;
envri:includesAccessPolicyStatements "false"^^xsd:bool ;
envri:isMachineActionable "false"^^xsd:bool ;
envri:persistentIdentifiersAreIncluded "false"^^xsd:bool ;
envri:searchEngineIndexing "false"^^xsd:bool ;
envri:supportedExportFormats envri:RFwCrLpo2tJ ;
envri:supportsExternalSearchEngineTypes envri:none ;
skos:altLabel "ACTRIS ACTRIS-ACCESS metadata"^^xsd:string .
envri:RAGCrLB94vV a rdf:Bag ;
rdf:li envri:re3data .
envri:RAGCrLI7XL a rdf:Bag ;
rdf:li envri:Acknowledgements,
envri:Citation,
envri:Usage .
envri:RAGY292WlcV a rdf:Bag ;
rdf:li envri:EposICS .
envri:RAGY2JG_e9 a rdf:Bag ;
rdf:li <http://www.wikidata.org/entity/Q20007257> .
envri:RAGYDJXlAvV a rdf:Bag ;
rdf:li envri:HarmonisingVocabularies,
envri:MetadataChecking .
envri:RAGYDJlantJ a envri:PreferredFormat ;
envri:hasDataHeaderMetadataTypes envri:none ;
envri:hasFormatName envri:NULL .
envri:RAGYDJqLSeV a envri:AccessMechanism ;
envri:AccessWithoutCosts "true"^^xsd:bool ;
envri:contentAccessAuthorizationRequired "false"^^xsd:bool ;
envri:dataLicenseIri envri:none ;
envri:hasAccessProtocolUrl <https://www.w3.org/wiki/UriSchemes/http> ;
envri:hasAuthenticationMethod "OAuth"^^xsd:string ;
envri:maintainsOwnUserDatabase envri:planned ;
envri:openAccessMetadata "true"^^xsd:bool ;
envri:personIdentificationSystem ns1:Q51044 ;
envri:supportsAccessTechnology envri:NULL ;
envri:usesAuthorisationTechnique ns1:Q161157 ;
envri:usesDataLicenses envri:planned ;
skos:altLabel "ACTRIS ASC access mechanism"^^xsd:string .
envri:RAGYcL19ft9 envri:dataIsFindable envri:NULL ;
envri:gaps envri:NULL ;
skos:altLabel "eLTER DEIMS-SDR faireness findability"^^xsd:string .
envri:RAGYcLC-tJ foaf:mbox <[email protected]> ;
foaf:name "xx Txx"^^xsd:string .
envri:RAGYcLsu8X9 envri:dataProductsOffered envri:NULL ;
envri:distributedWorkflowsToolsUsed envri:none ;
envri:otherAnalysisServicesOffered envri:none ;
envri:specialDataProcessingStepsApplied envri:NULL ;
envri:workflowFrameworksApplied envri:NULL ;
skos:altLabel "EPOS Terradue data processing"^^xsd:string .
envri:RAGYcVULTX9 a ns1:Q186588,
ns1:Q42848 ;
envri:dataSchemaIsRegistered envri:none ;
envri:hasPreferredFormat envri:RFwCcVJVTXJ ;
skos:altLabel "EISCAT Madrigal data"^^xsd:string .
envri:RAGYcVc9iXV a ns1:Q234460,
ns1:Q42848 ;
envri:dataSchemaIsRegistered envri:RAGYr9RLivV ;
envri:hasPreferredFormat envri:RTGCDJg9iXL ;
skos:altLabel "IAGOS IAGOS repository data"^^xsd:string .
envri:RAGYcVhFX9 a rdf:Bag ;
rdf:li envri:Acknowledgements,
envri:DataAccess,
envri:TermsOfUse,
ns1:Q1400808 .
envri:RAGYr9RLivV a rdf:Bag ;
rdf:li envri:LocalRegistry .
envri:RAGl29k6reL envri:gaps envri:RzZY2Juf2e9 ;
skos:altLabel "ACTRIS ACTRIS - In-Situ unit faireness interoperability"^^xsd:string ;
ns1:Q61782522 "partially"^^xsd:bool .