-
Notifications
You must be signed in to change notification settings - Fork 10
/
data.json
1801 lines (1801 loc) · 86.3 KB
/
data.json
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
{
"installations": [
{
"name": "Abacus",
"description": "Open for researchers associated with British Columbia universities to deposit data.",
"lat": 49.259982,
"lng": -123.250212,
"hostname": "abacus.library.ubc.ca",
"metrics": true,
"launch_year": "2014",
"country": "Canada",
"continent": "North America",
"harvesting_sets": [
"abacus_open"
],
"gdcc_member": false,
"doi_authority": "\u2415",
"contact_email": "[email protected]"
},
{
"name": "ACSS Dataverse",
"description": "The ACSS Dataverse is an initiative of the Arab Council for the Social Sciences, in collaboration with the Odum Institute for Research in Social Science at the University of North Carolina at Chapel Hill. The ACSS Dataverse contains social science datasets produced in Arab countries, with the goal of making data available for research in the region and preserving data for future generations of researchers. There is no charge for access to datasets in the ACSS Dataverse, although users are requested to register in order to download data. The ACSS Dataverse encourages social scientists who study the Arab region to participate in this initiative by depositing data.",
"lat": 33.899798,
"lng": 35.485184,
"hostname": "dataverse.theacss.org",
"metrics": true,
"launch_year": "2019",
"country": "Lebanon",
"continent": "Asia",
"gdcc_member": false,
"doi_authority": "10.25825",
"contact_email": "[email protected]"
},
{
"name": "ADA Dataverse",
"description": "The Australian Data Archive provides a national service for collecting, preserving, publishing and accessing digital research data.",
"lat": -35.343784,
"lng": 149.082977,
"hostname": "dataverse.ada.edu.au",
"metrics": true,
"launch_year": "2017",
"country": "Australia",
"continent": "Australia",
"about_url": "https://ada.edu.au",
"gdcc_member": true,
"core_trust_seals": [
"https://www.coretrustseal.org/wp-content/uploads/2018/02/Australian-Data-Archive.pdf"
],
"doi_authority": "10.26193",
"board": "https://github.com/orgs/IQSS/projects/17",
"contact_email": "[email protected]"
},
{
"name": "Arca Dados",
"description": "Arca Dados is Fiocruz's official repository to archive, publish, disseminate, preserve and share digital research data produced by the Fiocruz community or in partnership with other research institutes or bodies, with the objective of promoting new research, ensuring the reproducibility or replicability of existing research, and promoting Open and Citizen Science. Its objective is to stimulate the wide circulation of scientific knowledge, strengthening the institutional commitment to Open Science and the free access of information in health, in addition to providing transparency and fostering collaboration between researchers, educators, academics, managers, graduate students, for the advancement of knowledge and the creation of solutions that meet society's demands. For more information, email [email protected]",
"lat": -22.874936,
"lng": -43.245379,
"hostname": "dadosdepesquisa.fiocruz.br",
"metrics": true,
"launch_year": "2020",
"country": "Brazil",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.35078",
"contact_email": "[email protected]"
},
{
"name": "ARP",
"description": "The repository was originally created as Concorda, an ad-hoc initiative for data exchange during the Covid-19 pandemic by HUN-REN Institute for Computer Science and Control (SZTAKI) and HUN-REN Wigner Research Centre for Physics (WIGNER). Since then, the repository was significantly expanded with additional disk space and other resources donated by SZTAKI and WIGNER institutes, and accepts data from all Hungarian researchers (with some storage constraints). In 2021, the ARP project started to build research data infrastructure for the Hungarian Research Network, and chose it as the main repository component to be integrated, while also significantly expanding its storage capacity. See also: https://researchdata.hu/ https://fairsharing.org/4585 https://www.re3data.org/repository/r3d100014109 https://v2.sherpa.ac.uk/id/repository/10638 https://wigner.hu/ https://sztaki.hu/",
"lat": 47.47834443,
"lng": 19.05210423,
"hostname": "repo.researchdata.hu",
"metrics": true,
"launch_year": "2020",
"country": "Hungary",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "ASU Library Research Data Repository",
"description": "ASU Library's research data repository (powered by Harvard\u2019s Dataverse software) helps ASU affiliated researchers share, store, preserve, cite, explore, and make research data accessible and discoverable. Dataverse is a dedicated research data management service platform that serves in the publication and reuse phase of the research data lifecycle and works in concert with the ASU Digital Repository ecosystem to present a more complete picture of ASU\u2019s scholarly activities.",
"lat": 33.425437,
"lng": -111.928163,
"hostname": "dataverse.asu.edu",
"metrics": true,
"launch_year": "2020",
"country": "USA",
"continent": "North America",
"gdcc_member": true,
"doi_authority": "10.48349",
"board": "https://github.com/orgs/IQSS/projects/30",
"contact_email": "[email protected]"
},
{
"name": "AUSSDA Dataverse",
"description": "AUSSDA - The Austrian Social Science Data Archive makes social science data accessible, creating opportunities for research and data reuse, benefitting science and society. AUSSDA serves as the Austrian representative in the Consortium of European Social Science Data Archives (CESSDA ERIC).",
"lat": 48.210033,
"lng": 16.363449,
"hostname": "data.aussda.at",
"metrics": true,
"launch_year": "2017",
"country": "Austria",
"continent": "Europe",
"about_url": "http://aussda.at",
"harvesting_sets": [
"all_published"
],
"gdcc_member": false,
"core_trust_seals": [
"https://www.coretrustseal.org/wp-content/uploads/2020/07/AUSSDA-The-Austrian-Social-Science-Data-Archive.pdf"
],
"doi_authority": "10.11587",
"contact_email": "[email protected]"
},
{
"name": "awf.rodbuk.pl",
"description": "",
"lat": 50.07272998,
"lng": 20.00123847,
"hostname": "awf.rodbuk.pl",
"metrics": true,
"launch_year": "2023",
"country": "Poland",
"continent": "Europe",
"gdcc_member": false
},
{
"name": "BioData.pt Data Management Portal (DMPortal)",
"description": "DMPortal is offered by BioData.pt, the Portuguese biological data infrastructure and national node of ELIXIR. The portal aims to support the national life sciences research community by enabling FAIR research practices. DMPortal is open to all life sciences fields, but has traditionally been more focused in supporting research in COVID-19, human health, and plant sciences.",
"lat": 38.736667,
"lng": -9.138889,
"hostname": "dmportal.biodata.pt",
"metrics": true,
"launch_year": "2020",
"country": "Portugal",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.34636"
},
{
"name": "bonndata",
"description": "bonndata is a state-of-the-art, cross-disciplinary research data repository designed for scientists at the University of Bonn. The repository is an integral part of the University of Bonn's research infrastructure and it is maintained by the Research Data Service Center, which offers a range of services to help researchers manage their data throughout the research lifecycle.",
"lat": 50.72894416,
"lng": 7.088606727,
"hostname": "bonndata.uni-bonn.de",
"metrics": true,
"launch_year": "2023",
"country": "Germany",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "Borealis",
"description": "Open for researchers and organizations associated with subscribing Canadian universities to deposit data.",
"lat": 43.6532,
"lng": -79.3832,
"hostname": "borealisdata.ca",
"metrics": true,
"launch_year": "2012",
"country": "Canada",
"continent": "North America",
"about_url": "https://borealisdata.ca/about/",
"harvesting_sets": [
"sp_dataverse"
],
"gdcc_member": true,
"core_trust_seals": [
"https://doi.org/10.34894/PUHYXX"
],
"doi_authority": "10.5683",
"board": "https://github.com/orgs/IQSS/projects/8",
"contact_email": "[email protected]"
},
{
"name": "Botswana Harvard Data",
"description": "The Botswana Harvard AIDS Institute Partneship is a world-renowned educational institution of excellence in research and education pertinent to HIV/AIDS and other emerging public health challenges. Established in 1996, the Botswana Harvard AIDS Institute Partnership (BHP) is a collaborative research and training initiative between Botswana\u2019s Ministry of Health and Wellness and the Harvard T.H. Chan School of Public Health AIDS Initiative. The BHP Dataverse is a data repository for all the research done at BHP. Raw data, anonymised data and final analysis data for every research. This repository will achieve and also easy data sharing within the organisation and outside.",
"lat": -24.653257,
"lng": 25.906792,
"hostname": "dataverse.bhp.org.bw",
"metrics": true,
"launch_year": "2019",
"country": "Botswana",
"continent": "Africa",
"gdcc_member": false,
"doi_authority": "\u2205"
},
{
"name": "BRIN Dataverse",
"description": "The Repositori Ilmiah Nasional (RIN) is a means to share, preserve, cite, explore, and analyze research data. RIN increases data availability and allows others to reproduce research more easily. Researchers, data authors, publishers, data distributors, and affiliate institutions all receive academic credit and web visibility. Researchers, agencies, and funders have full control over research data.",
"lat": -6.228771,
"lng": 106.818082,
"hostname": "data.brin.go.id",
"metrics": true,
"launch_year": "2018",
"country": "Indonesia",
"continent": "Asia",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "Centro Brasileiro de Pesquisas F\u00edsicas - CBPF",
"description": "Brazilian Center for Research in Physics",
"lat": -22.954204,
"lng": -43.1734987,
"hostname": "dataverse.cbpf.br",
"metrics": true,
"launch_year": "2021",
"country": "Brazil",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.8037",
"contact_email": "[email protected]"
},
{
"name": "CESA | Repositorio de datos acad\u00e9micos",
"description": "Discover the data on entrepreneurship projects, innovation plans, digital transformation proposals, consumers, and financial markets. Also, explore research on business, management, and entrepreneurship research development at our Business school.",
"lat": 4.621920153,
"lng": -74.06522592,
"hostname": "opendata.cesa.edu.co",
"metrics": true,
"launch_year": "2023",
"country": "Colombia",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.5713",
"contact_email": "[email protected]"
},
{
"name": "CIDACS",
"description": "Fiocruz-BA data repository publishes epidemiological data and research from all over Brazil",
"lat": -12.922964,
"lng": -38.387918,
"hostname": "dataverse.cidacs.org",
"metrics": true,
"launch_year": "2020",
"country": "Brazil",
"continent": "South America",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "CIFOR",
"description": "Center for International Forestry Research (CIFOR) Dataverse",
"lat": -6.594293,
"lng": 106.806,
"hostname": "data.cifor.org",
"metrics": true,
"launch_year": "2015",
"country": "Indonesia",
"continent": "Asia",
"harvesting_sets": [
"cifor_general"
],
"gdcc_member": false,
"doi_authority": "10.17528",
"contact_email": "[email protected]"
},
{
"name": "CIMMYT Research Data",
"description": "Free, open access repository of research data and software produced and developed by CIMMYT scientists.",
"lat": 19.531535,
"lng": -98.846064,
"hostname": "data.cimmyt.org",
"metrics": true,
"launch_year": "2016",
"country": "Mexico",
"continent": "North America",
"harvesting_sets": [
"cimmytdatadvn",
"cimmytswdvn",
"iwypdvn"
],
"gdcc_member": false,
"doi_authority": "\u2415",
"contact_email": "[email protected]"
},
{
"name": "CIRAD Dataverse",
"description": "Organisme fran\u00e7ais de recherche agronomique et de coop\u00e9ration internationale pour le d\u00e9veloppement durable des r\u00e9gions tropicales et m\u00e9diterran\u00e9ennes, les activit\u00e9s du CIRAD rel\u00e8vent des sciences du vivant, des sciences sociales et des sciences de l\u2019ing\u00e9nieur appliqu\u00e9es \u00e0 l\u2019agriculture, \u00e0 l\u2019alimentFrench agricultural research and international cooperation organization working for the sustainable development of tropical and Mediterranean regions, CIRAD's activities concern the life sciences, social sciences and engineering sciences, applied to agriculture, the environment and territorial management.",
"lat": 43.650089,
"lng": 3.869122,
"hostname": "dataverse.cirad.fr",
"metrics": true,
"launch_year": "2018",
"country": "France",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.18167",
"board": "https://github.com/orgs/IQSS/projects/29",
"contact_email": "[email protected]"
},
{
"name": "CORA. Research Data Repository (RDR)",
"description": "CORA. Research Data Repository (RDR) is a federated and multidisciplinary data repository that allows Catalan universities, CERCA research centers and other entities that carry out research to publish research datasets in FAIR mode and following the EOSC guidelines. The objectives of the RDR are to increase the efficiency and transparency of research through the rapid dissemination of datasets and to facilitate their reuse.",
"lat": 41.38745982,
"lng": 2.112077304,
"hostname": "dataverse.csuc.cat",
"metrics": true,
"launch_year": "2021",
"country": "Spain",
"continent": "Europe",
"about_url": "https://dataverse.csuc.cat/about.xhtml",
"gdcc_member": true,
"doi_authority": "10.3481",
"contact_email": "[email protected]"
},
{
"name": "CoronaWhy Dataverse",
"description": "Research data repository of the CoronaWhy, globally distributed, volunteer-powered research organisation, trying to assist the medical community\u2019s ability to answer key questions related to COVID-19 and Monkeypox.",
"lat": 52.0705,
"lng": 4.3007,
"hostname": "datasets.coronawhy.org",
"launch_year": "2020",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "CROSSDA",
"description": "The Croatian Social Science Data Archive (CROSSDA) is a national infrastructure public service whose role is to ensure the long-term preservation and dissemination of social science research data.",
"lat": 45.79641,
"lng": 15.97162,
"hostname": "data.crossda.hr",
"metrics": true,
"launch_year": "2020",
"country": "Croatia",
"continent": "Europe",
"about_url": "https://www.crossda.hr/",
"gdcc_member": false,
"doi_authority": "10.23669",
"contact_email": "[email protected]"
},
{
"name": "CUHK Research Data Repository",
"description": "The CUHK Research Data Repository serves as an institutional research data repository for The Chinese University of Hong Kong (CUHK). It facilitates CUHK researchers to deposit their research data and for the worldwide to explore the research data outputs at CUHK.",
"lat": 22.41984318,
"lng": 114.2067606,
"hostname": "researchdata.cuhk.edu.hk",
"metrics": true,
"launch_year": "2021",
"country": "Hong Kong",
"continent": "Asia",
"gdcc_member": false,
"doi_authority": "10.48668",
"contact_email": "[email protected]"
},
{
"name": "DADOS IPB",
"description": "The data repository of the Instituto Polit\u00e9cnico de Bragan\u00e7a aims to store, preserve, share and manage research data generated by the academic community.",
"lat": 41.79757745,
"lng": -6.767712402,
"hostname": "dados.ipb.pt",
"metrics": true,
"launch_year": "2022",
"country": "Portugal",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "DANS Data Station Archaeology",
"description": "DANS has launched the Data Station Archeology for the Dutch archaeological research community interested in storing, finding, sharing and publishing their data online. iggest advantages: the large amount of easily searchable data, support for all Creative Commons licenses, the possibility of version control, working with living data and sharing with others.",
"lat": 52.0705,
"lng": 4.3007,
"hostname": "archaeology.datastations.nl",
"metrics": true,
"launch_year": "2022",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "DANS Data Station Life Sciences",
"description": "Domain-specific data repository for the Life Sciences, covering all disciplines from the health, medical as well as the green life sciences. This repository primarily serves research communities in The Netherlands, but is open to international researchers and projects that carry a connection to The Netherlands or Dutch research institutes and programmes.",
"lat": 52.08083,
"lng": 4.345672,
"hostname": "lifesciences.datastations.nl",
"metrics": true,
"launch_year": "2023",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.17026",
"contact_email": "[email protected]"
},
{
"name": "DANS Data Station Physical and Technical Sciences",
"description": "Domain-specific data repository for research data from the Physical and Technical sciences. This repository focuses on the Dutch research community, offering repository services to organisations and individuals that have no (direct) acces to an institutional repository, or have a preference for the multi-disciplinary data services provided by DANS.",
"lat": 52.0705,
"lng": 4.3007,
"hostname": "phys-techsciences.datastations.nl",
"metrics": true,
"launch_year": "2023",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.17026",
"contact_email": " [email protected]"
},
{
"name": "DANS Data Station Social Sciences and Humanities",
"description": "The Data Station Social Sciences and Humanities is a service of DANS. It allows you to deposit and search for data within the social sciences and humanities.",
"lat": 52.0705,
"lng": 4.3007,
"hostname": "ssh.datastations.nl",
"metrics": true,
"launch_year": "2023",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.17026",
"contact_email": "[email protected]"
},
{
"name": "dare",
"description": "/dare/ (short for data repository) is the central institutional repository for research data at the Carl von Ossietzky University of Oldenburg. It serves as a platform for research data generated at the University or created in its context. All users affiliated with the University are welcome to upload their research data here.",
"lat": 53.1468491,
"lng": 8.183134727,
"hostname": "dare.uol.de",
"metrics": true,
"launch_year": "2022",
"country": "Germany",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.57782",
"contact_email": "[email protected]"
},
{
"name": "Dartmouth Dataverse",
"description": "",
"lat": 43.704448,
"lng": -72.288715,
"hostname": "dataverse.dartmouth.edu",
"metrics": true,
"launch_year": "2020",
"country": "USA",
"continent": "North America",
"gdcc_member": false
},
{
"name": "DaRUS",
"description": "DaRUS, the data repository of the University of Stuttgart, offers a secure location for research data and codes of members or partners of the University of Stuttgart. DaRUS is used not only for publishing finished data, but also for managing and exchanging data at all stages of the lifecycle.",
"lat": 48.781647,
"lng": 9.172552,
"hostname": "darus.uni-stuttgart.de",
"metrics": true,
"launch_year": "2019",
"country": "Germany",
"continent": "Europe",
"about_url": "https://www.izus.uni-stuttgart.de/en/fokus/darus/",
"gdcc_member": true,
"doi_authority": "10.18419",
"contact_email": "[email protected]"
},
{
"name": "Data Suds",
"description": "Hosted by IRD, a french public research institution, who defends an original model of equitable scientific partnership with the countries of the South and an interdisciplinary and citizen science, committed to the achievement of the Sustainable Development Goals.",
"lat": 43.309873,
"lng": 5.368818,
"hostname": "dataverse.ird.fr",
"metrics": true,
"launch_year": "2019",
"country": "France",
"continent": "Europe",
"about_url": "https://data.ird.fr",
"gdcc_member": false,
"doi_authority": "10.23708",
"board": "https://github.com/orgs/IQSS/projects/20",
"contact_email": "[email protected]"
},
{
"name": "data.sciencespo",
"description": "Open for researchers and organizations associated with French universities to deposit data. Hosted by the Center for Socio-Political Data (Sciences Po and CNRS).",
"lat": 48.854027,
"lng": 2.328351,
"hostname": "data.sciencespo.fr",
"metrics": true,
"launch_year": "2016",
"country": "France",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.2141",
"board": "https://github.com/orgs/IQSS/projects/12",
"contact_email": "[email protected]"
},
{
"name": "dataportal.ing.pan.pl",
"description": "IGS PAS Data Portal is an open data repository of Institute of Geological Sciences Polish Academy of Sciences. This portal is used to collect and share data, taking into account access to the data from external repositories. IGS PAS data are open and provided for free use for non-commercial purposes under applicable laws on data sharing public and publicly funded. In the case of using data by external entities, the data source must be cited following the guidelines (information on how to cite data is included in the Cite Dataset field).",
"lat": 52.22835613,
"lng": 20.99329514,
"hostname": "dataportal.ing.pan.pl",
"metrics": true,
"launch_year": "2024",
"country": "Poland",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.60871"
},
{
"name": "DataRepositoriUM",
"description": "Institutional Data Repository of the University of Minho. Share, publish and manage research data from UMinho research units.",
"lat": 41.561246,
"lng": -8.39628,
"hostname": "datarepositorium.sdum.uminho.pt",
"launch_year": "2019",
"country": "Portugal",
"continent": "Europe",
"about_url": "https://datarepositorium.uminho.pt/",
"gdcc_member": true,
"doi_authority": "10.34622",
"contact_email": "[email protected]"
},
{
"name": "DataSpace@HKUST",
"description": "",
"lat": 22.336281,
"lng": 114.266721,
"hostname": "dataspace.ust.hk",
"launch_year": "2016",
"country": "Hong Kong",
"continent": "Asia",
"gdcc_member": false,
"doi_authority": "10.14711"
},
{
"name": "Dataverse e-cienciaDatos",
"description": "e-cienciaDatos is a multidisciplinary data repository that houses the scientific datasets of researchers from the public universities of the Community of Madrid and the UNED, members of the Consorcio Madro\u00f1o, in order to give visibility to these data, to ensure its preservation and facilitate their access and reuse. e-cienciaDatos is structured as a system constituted by different communities dataverse that collects datasets of each of the individual universities. e-cienciaDatos es un repositorio de datos multidisciplinar que alberga datasets cient\u00edficos de las univesidades p\u00fablicas de la Comunidad de Madrid y la UNED - miembros del Consorcio Madro\u00f1o- para dar visibilidad a estos datos, asegurar su preservaci\u00f3n y facilitar tanto su acceso como reulitilaci\u00f3n. e-cienciaDatos tiene una comunidad dataverse por universidad con los datasets de dicha universidad.",
"lat": 40.416775,
"lng": -3.7492,
"hostname": "edatos.consorciomadrono.es",
"metrics": true,
"launch_year": "2017",
"country": "Spain",
"continent": "Europe",
"about_url": "http://www.consorciomadrono.es/docs/eCienciaDatosTechnicalDescription.pdf",
"harvesting_sets": [
"openaire_data"
],
"gdcc_member": true,
"core_trust_seals": [
"https://doi.org/10.34894/CUGYWW"
],
"doi_authority": "10.2195",
"contact_email": "[email protected]"
},
{
"name": "DataverseNL",
"description": "DataverseNL is a data repository hosted by DANS. Researchers associated with the DataverseNL partners (Several universities, higher education and research institutes) are able to deposit data. ",
"lat": 52.08083,
"lng": 4.345672,
"hostname": "dataverse.nl",
"metrics": true,
"launch_year": "2013",
"country": "Netherlands",
"continent": "Europe",
"about_url": "https://dans.knaw.nl/en/data-services/dataversenl/",
"gdcc_member": true,
"core_trust_seals": [
"https://www.coretrustseal.org/wp-content/uploads/2018/04/Tilburg-University-Dataverse.pdf"
],
"doi_authority": "\u2415",
"board": "https://github.com/orgs/IQSS/projects/22",
"contact_email": "[email protected]"
},
{
"name": "DataverseNO",
"description": "DataverseNO (https://dataverse.no/) is a national, generic repository for open research data from researchers from Norwegian research institutions. Some collections within DataverseNO also accept data from researchers from other institutions.",
"lat": 69.649208,
"lng": 18.955324,
"hostname": "dataverse.no",
"metrics": true,
"launch_year": "2017",
"country": "Norway",
"continent": "Europe",
"about_url": "https://site.uit.no/dataverseno/about/",
"harvesting_sets": [
"dataverseno"
],
"gdcc_member": true,
"core_trust_seals": [
"https://www.coretrustseal.org/wp-content/uploads/2020/03/DataverseNO.pdf"
],
"doi_authority": "10.1871",
"board": "https://github.com/orgs/IQSS/projects/14",
"contact_email": "[email protected]"
},
{
"name": "DataverseUA",
"description": "Development of the Open Data Repository \"DataverseUA\" for the National Academy of Sciences of Ukraine carried out within the framework of the scientific and technical project of the NAS of Ukraine \"Development and implementation of open science infrastructure in the NAS of Ukraine (OPENS)\" for 2023-2024. The Open Data Repository \"DataverseUA\" provides the storing of research data, including documents in digital form, which are obtained in scientific research activities are used as evidence in the research process, and are necessary to confirm conclusions and research results in scientific publications.",
"lat": 50.44528717,
"lng": 30.51258431,
"hostname": "opendata.nas.gov.ua",
"metrics": true,
"launch_year": "2024",
"country": "Ukraine",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "DATICE",
"description": "DATICE is a data service and archive for Icelandic social science research data",
"lat": 64.14042,
"lng": -21.9493,
"hostname": "dataverse.rhi.hi.is",
"metrics": true,
"launch_year": "2020",
"country": "Iceland",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.34881",
"contact_email": "[email protected]"
},
{
"name": "DeiC Dataverse",
"description": "DeiC Dataverse is the Danish National Repository for Research Data and is available to all universities in Denmark. It is operated by the Danish e-infrastructure Consortium, DeiC, in collaboration with the University of Copenhagen.",
"lat": 55.68061837,
"lng": 12.57224588,
"hostname": "dataverse.deic.dk",
"launch_year": "2024",
"country": "Denmark",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.60612",
"contact_email": "[email protected]"
},
{
"name": "DOREL",
"description": "The institutional data repository DOREL - DOnn\u00e9es de REcherche Lorraines - is a tool for referencing the scientific production of the University of Lorraine as well as a space for publishing data sets produced within its research units. The repository is managed by a transversal team composed of coworkers from the University Libraries, the Research services, the IT services and the MSH Lorraine (Maison des Sciences de l'Homme). It is a multidisciplinary repository, developed with the Dataverse software.",
"lat": 48.69637516,
"lng": 6.176537898,
"hostname": "dorel.univ-lorraine.fr",
"metrics": true,
"launch_year": "2021",
"country": "France",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "DR-NTU (Data)",
"description": "The institutional open access research data repository for Nanyang Technological University (NTU). NTU researchers are encouraged to use DR-NTU (Data) to deposit, publish and archive their final research data in order to make their research data discoverable, accessible and reusable.",
"lat": 1.348668,
"lng": 103.683104,
"hostname": "researchdata.ntu.edu.sg",
"metrics": true,
"launch_year": "2017",
"country": "Singapore",
"continent": "Asia",
"about_url": "https://blogs.ntu.edu.sg/lib-datamanagement/about-dr-ntu-data/",
"gdcc_member": true,
"doi_authority": "10.21979",
"contact_email": "[email protected]"
},
{
"name": "DUnAs",
"description": "DUnAs is the institutional research data repository of the University of Aveiro. This repository is intended to share, archive, preserve, cite, access, and explore research data produced in the university scientific research activities",
"lat": 40.63078158,
"lng": -8.657462548,
"hostname": "dunas.ua.pt",
"metrics": true,
"launch_year": "2022",
"country": "Portugal",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.48527",
"contact_email": "[email protected]"
},
{
"name": "Edmond",
"description": "Edmond is a research data repository for Max Planck researchers. It is the place to store completed datasets of research data with open access. Edmond serves the publication of research data from all disciplines and offers scientists the ability to create citable research objects.",
"lat": 48.137222,
"lng": 11.575556,
"hostname": "edmond.mpdl.mpg.de",
"metrics": true,
"launch_year": "2022",
"country": "Germany",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "FGV Dataverse",
"description": "",
"lat": -22.94095725,
"lng": -43.18013239,
"hostname": "dataverse.fgv.br",
"metrics": true,
"launch_year": "2021",
"country": "Brazil",
"continent": "South America",
"gdcc_member": false,
"contact_email": "[email protected], [email protected]"
},
{
"name": "Florida International University Research Data Portal",
"description": "The FIU Research Data Portal serves as an inter-disciplinary data archive to support access and reuse of research data produced at FIU.",
"lat": 25.75389,
"lng": -80.3945539,
"hostname": "dataverse.fiu.edu",
"metrics": true,
"launch_year": "2020",
"country": "USA",
"continent": "North America",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "Fudan University",
"description": "Open for Fudan University affiliated researchers to deposit data.",
"lat": 31.298531,
"lng": 121.501446,
"hostname": "dvn.fudan.edu.cn",
"launch_year": "2014",
"country": "China",
"continent": "Asia",
"gdcc_member": true,
"doi_authority": "\u2205",
"contact_email": "[email protected]"
},
{
"name": "George Mason University Dataverse",
"description": "George Mason University Libraries Dataverse publishes, shares, and preserves data of enduring value produced by George Mason faculty, staff, and students.",
"lat": 38.8306,
"lng": -77.3078,
"hostname": "dataverse.orc.gmu.edu",
"metrics": true,
"launch_year": "2021",
"country": "USA",
"continent": "North America",
"about_url": "https://library.gmu.edu/dataverse",
"gdcc_member": false,
"doi_authority": "10.13021",
"contact_email": "[email protected]"
},
{
"name": "Gustave Eiffel University Dataverse",
"description": "Les donn\u00e9es de recherche de l'Universit\u00e9 Gustave Eiffel",
"lat": 48.84300627,
"lng": 2.587602512,
"hostname": "data.univ-gustave-eiffel.fr",
"metrics": true,
"launch_year": "2017",
"country": "France",
"continent": "Europe",
"gdcc_member": false
},
{
"name": "G\u00f6ttingen Research Online",
"description": "G\u00f6ttingen Research Online is an institutional repository for the publication of research data at the G\u00f6ttingen Campus. It is managed by the G\u00f6ttingen eResearch Alliance, a joint group of the G\u00f6ttingen State and University Library and Gesellschaft f\u00fcr wissenschaftliche Datenverarbeitung mbH G\u00f6ttingen.",
"lat": 51.533713,
"lng": 9.932198,
"hostname": "data.goettingen-research-online.de",
"metrics": true,
"launch_year": "2019",
"country": "Germany",
"continent": "Europe",
"gdcc_member": true,
"doi_authority": "10.25625",
"contact_email": "[email protected]"
},
{
"name": "Harvard Dataverse",
"description": "Share, archive, and get credit for your data. Find and cite data across all research fields.",
"lat": 42.375646,
"lng": -71.113212,
"hostname": "dataverse.harvard.edu",
"metrics": true,
"launch_year": "2008",
"country": "USA",
"continent": "North America",
"harvesting_sets": [
"IQSS"
],
"gdcc_member": true,
"doi_authority": "10.791",
"board": "https://github.com/orgs/IQSS/projects/19",
"contact_email": "[email protected]"
},
{
"name": "HeiDATA",
"description": "Open for Heidelberg University affiliated researchers to deposit data.",
"lat": 49.39875,
"lng": 8.672434,
"hostname": "heidata.uni-heidelberg.de",
"metrics": true,
"launch_year": "2014",
"country": "Germany",
"continent": "Europe",
"harvesting_sets": [
"heidata"
],
"gdcc_member": false,
"doi_authority": "10.11588",
"contact_email": "[email protected]"
},
{
"name": "IBICT",
"description": "The network Cariniana, cariniana.ibict.br, is funded entirely by the Brazilian government and in particular by MCTI (Minist\u00e9rio da Ci\u00eancia, Tecnologia e Inova\u00e7\u00e3o). It is a project for long-term preservation of scientific publications in Brazil.",
"lat": -15.805842,
"lng": -47.881369,
"hostname": "repositoriopesquisas.ibict.br",
"metrics": true,
"launch_year": "2015",
"country": "Brazil",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.5072"
},
{
"name": "ICRISAT",
"description": "International Crops Research Institute for the Semi-Arid Tropics. Free open data repository of ICRISAT research data including Social science, Phenotypic, Genotypic, Spatial and Soil & Weather data which are linked with open publications.",
"lat": 17.385,
"lng": 78.4867,
"hostname": "dataverse.icrisat.org",
"metrics": true,
"launch_year": "2012",
"country": "India",
"continent": "Asia",
"harvesting_sets": [
"icrisat"
],
"gdcc_member": false,
"doi_authority": "10.21421",
"contact_email": "[email protected]; [email protected]"
},
{
"name": "ICWSM",
"description": "Datasets from the International AAAI Conference on Web and Social Media (ICWSM).",
"lat": 37.432057,
"lng": -122.175297,
"hostname": "dataverse.mpi-sws.org",
"launch_year": "2018",
"country": "Germany",
"continent": "Europe",
"about_url": "http://guides.dataverse.org/en/4.8.5/user",
"gdcc_member": false,
"doi_authority": "10.5072"
},
{
"name": "IDSC Dataverse",
"description": "The IDSC Dataverse is the Data Repository of the IDSC - International Data Service Center of IZA - Institute of Labor Economics. It was created as part of a project sponsored by the German Federal Ministry of Education and Research whose aim was to produce building blocks for research data trustees. The purpose of the IDSC Dataverse is to serve the needs of researchers and entities associated with IZA and make datasets available for replication, secondary research and teaching purposes. It adheres to the FAIR data principles.",
"lat": 50.7300529,
"lng": 7.109468,
"hostname": "dataverse.iza.org",
"metrics": true,
"launch_year": "2024",
"country": "Germany",
"continent": "Europe",
"about_url": "https://idsc.iza.org",
"gdcc_member": false,
"doi_authority": "10.15185",
"contact_email": "[email protected]"
},
{
"name": "IFDC Dataverse",
"description": "Over the years, IFDC has conducted numerous research and demonstration trials across its global programs and projects. Looking to avoid poor documentation, loss of data, and to boost the efficiency of data usage and decision-making abilities, IFDC has implemented a center-wide initiative to collect all research and development data in standard accessible formats, collate all data and analyses, and to make it available through IFDC solutions. The Dataverse came to corroborate with the IFDC idea to implement the FAIR principles and make the data easily findable, accessible, interoperable, and reusable.",
"lat": 34.76992466,
"lng": -87.6541439,
"hostname": "dataverse.ifdc.org",
"metrics": true,
"launch_year": "2021",
"country": "USA",
"continent": "North America",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "IISH Dataverse",
"description": "The IISH Dataverse contains micro-, meso-, and macro-level datasets on social and economic history.",
"lat": 52.369021,
"lng": 4.939226,
"hostname": "datasets.iisg.amsterdam",
"metrics": true,
"launch_year": "2015",
"country": "Netherlands",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10622",
"contact_email": "[email protected]"
},
{
"name": "Indata",
"description": "CEDIA's Research Data Repository preserves, disseminates and gives access to research data generated by its academics and researchers. In order to grant visibility, this repository guarantees its conservation and makes easier its access and reuse. Researchers, journals, data authors, publishers, data distributors, and affiliated institutions receive academic credit and visibility on the web.",
"lat": -2.90791,
"lng": -79.0108,
"hostname": "indata.cedia.edu.ec",
"metrics": true,
"launch_year": "2020",
"country": "Ecuador",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.23667",
"contact_email": "[email protected]"
},
{
"name": "Institute of Russian Literature Dataverse",
"description": "An institutional repository hosted by the Institute of Russian Literature (Pushkinskij Dom) of the Russian Academy of Sciences at Saint Petersburg. It is meant to serve as a public platform to publish and host open data on Russian Literature and folklore. The repository will host data created in the Institute and by the wider research community.",
"lat": 59.944883,
"lng": 30.301463,
"hostname": "dataverse.pushdom.ru",
"metrics": true,
"launch_year": "2020",
"country": "Russia",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.3186"
},
{
"name": "International Potato Center",
"description": "Centro Internacional De La Papa (International Potato Center) is a member of the CGIAR Consortium, an international organization made up of 15 centers engaged in research for a food secure future.",
"lat": -12.077791,
"lng": -76.946888,
"hostname": "data.cipotato.org",
"metrics": true,
"launch_year": "2019",
"country": "Peru",
"continent": "South America",
"gdcc_member": false,
"doi_authority": "10.21223",
"contact_email": "[email protected]"
},
{
"name": "IPGP Research Collection",
"description": "A repository for sharing and preserving research data and documents produced, collected and curated at the Institut de physique du globe de Paris (IPGP).",
"lat": 48.844925,
"lng": 2.356274,
"hostname": "dataverse.ipgp.fr",
"metrics": true,
"launch_year": "2022",
"country": "France",
"continent": "Europe",
"gdcc_member": false,
"doi_authority": "10.18715",
"contact_email": "[email protected]"
},
{
"name": "Italian Institute of Technology (IIT)",
"description": "IIT Dataverse is the research data repository of Istituto Italiano di Tecnologia and has been launched in May 2021. IIT\u2019s research activity is focused on cutting-edge science in four Research Domains (Computational Sciences, LifeTech, Nanomaterials, and Robotics) and promotes excellence in basic and applied research. IIT Dataverse offers long-term storage and preservation to research data of IIT-affiliated researchers. IIT is also member of the Global Dataverse Community Consortium",
"lat": 44.475,
"lng": 8.9062,
"hostname": "dataverse.iit.it",
"metrics": true,
"launch_year": "2021",
"country": "Italy",
"continent": "Europe",
"gdcc_member": false,
"contact_email": "[email protected]"
},
{
"name": "Johns Hopkins Research Data Repository",
"description": "The Johns Hopkins Research Data Repository is an open access repository for Johns Hopkins researchers to share their research data. It is administered by professional curators at JHU Data Services, who will work with depositors to enable future discovery and reuse of your data.",
"lat": 39.329055,
"lng": -76.620335,
"hostname": "archive.data.jhu.edu",
"metrics": true,
"launch_year": "2013",
"country": "USA",
"continent": "North America",
"harvesting_sets": [
"jhuda_all"
],
"gdcc_member": true,
"doi_authority": "10.7281",
"contact_email": "[email protected]"
},
{
"name": "JPL Open Repository",
"description": "The JPL Open Repository (JOR), replaces the JPL Technical Report Server (TRS) in 2023, is a repository for digital copies of technical publications authored by JPL employees. It includes journal articles (the Final Accepted Version), meeting papers, presentations, and other publications cleared for external distribution from 1992 to the present. It also include research datasets from 2022 on.",
"lat": 34.201815,
"lng": -118.172889,
"hostname": "dataverse.jpl.nasa.gov",
"metrics": true,
"launch_year": "2022",
"country": "USA",
"continent": "North America",
"gdcc_member": false,
"doi_authority": "10.48577",
"board": "https://github.com/orgs/IQSS/projects/42",
"contact_email": "[email protected]"
},
{
"name": "J\u00fclich DATA",
"description": "J\u00fclich DATA is the institutional research data repositorium made at Forschungszentrum J\u00fclich. Featuring metadata focus and running on Kubernetes.",
"lat": 50.90683,
"lng": 6.41026,
"hostname": "data.fz-juelich.de",
"metrics": true,
"launch_year": "2020",
"country": "Germany",
"continent": "Europe",
"about_url": "https://www.fz-juelich.de/zb/rdm",
"gdcc_member": false,
"doi_authority": "10.26165",
"board": "https://github.com/orgs/IQSS/projects/4",
"contact_email": "[email protected]"