-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.json
6806 lines (6806 loc) · 250 KB
/
packages.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
[
{
"user": "datasets",
"repo": "covid-19",
"branch": "main",
"path": "datapackage.json",
"stars": 1108,
"title": "Novel Coronavirus 2019",
"description": null
},
{
"user": "datasets",
"repo": "country-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 672,
"title": "Comprehensive country codes: ISO 3166, ITU, ISO 4217 currency codes and many more",
"description": null
},
{
"user": "turicas",
"repo": "covid19-br",
"branch": "master",
"path": "datapackage.json",
"stars": 533,
"title": "Daily time series on COVID-19 in Brazil",
"description": "Data on the evolution of the COVID-19 disease in Brazil, processed from each state Health Secretariat's COVID-19 daily reports."
},
{
"user": "datasets",
"repo": "s-and-p-500-companies",
"branch": "master",
"path": "datapackage.json",
"stars": 334,
"title": "S&P 500 Companies with Financial Information",
"description": null
},
{
"user": "datasets",
"repo": "geo-countries",
"branch": "master",
"path": "datapackage.json",
"stars": 331,
"title": "Country Polygons as GeoJSON",
"description": "geodata data package providing geojson polygons for all the world's countries"
},
{
"user": "datasets",
"repo": "s-and-p-500",
"branch": "master",
"path": "datapackage.json",
"stars": 260,
"title": "Standard and Poor's (S&P) 500 Index Data including Dividend, Earnings and P/E Ratio",
"description": null
},
{
"user": "datasets",
"repo": "airport-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 242,
"title": "Airport Codes",
"description": null
},
{
"user": "datasets",
"repo": "world-cities",
"branch": "master",
"path": "datapackage.json",
"stars": 167,
"title": "Major cities of the world",
"description": "List of the world's major cities (above 15,000 inhabitants)"
},
{
"user": "datasets",
"repo": "country-list",
"branch": "master",
"path": "datapackage.json",
"stars": 126,
"title": "List of all countries with their 2 digit codes (ISO 3166-1)",
"description": null
},
{
"user": "openreferral",
"repo": "specification",
"branch": "master",
"path": "datapackage.json",
"stars": 110,
"title": "Human Services Data Specification",
"description": "HSDS describes data about organizations, the services they provide, the locations at which these services can be accessed, and associated details."
},
{
"user": "datasets",
"repo": "currency-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 99,
"title": "ISO 4217 Currency Codes",
"description": null
},
{
"user": "datasets",
"repo": "un-locode",
"branch": "master",
"path": "datapackage.json",
"stars": 97,
"title": "UN-LOCODE Codelist",
"description": null
},
{
"user": "datasets",
"repo": "population",
"branch": "master",
"path": "datapackage.json",
"stars": 84,
"title": "Population figures for countries, regions (e.g. Asia) and the world",
"description": "Population figures for countries, regions (e.g. Asia) and the world. Data comes originally from World Bank and has been converted into standard CSV."
},
{
"user": "cmoa",
"repo": "collection",
"branch": "master",
"path": "datapackage.json",
"stars": 83,
"title": "Collection of the Carnegie Museum of Art & the Teenie Harris Archive.",
"description": "Carnegie Museum of Art is making public the collections records of all of its accessioned artworks. This release contains data on approximately 27365 objects across all departments of the museum; fine arts, decorative arts, photography, contemporary art, and the Heinz Architectural Center. Additionally, the metadata for the Teenie Harris Archive has been included. For ease of use, they are contained within their own files, but it includes approximately 58753 records using the same structure and format."
},
{
"user": "garfieldnate",
"repo": "kengdic",
"branch": "master",
"path": "datapackage.json",
"stars": 73,
"title": "Kengdic",
"description": "Korean-English dictionary"
},
{
"user": "datasets",
"repo": "language-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 69,
"title": "ISO Language Codes (639-1 and 693-2) and IETF Language Types",
"description": null
},
{
"user": "centraldedados",
"repo": "codigos_postais",
"branch": "master",
"path": "datapackage.json",
"stars": 66,
"title": "Códigos postais",
"description": "Códigos postais e as áreas que lhes correspondem"
},
{
"user": "datasets",
"repo": "gdp",
"branch": "master",
"path": "datapackage.json",
"stars": 62,
"title": "Country, Regional and World GDP (Gross Domestic Product)",
"description": "Country, regional and world GDP in current US Dollars ($). Regional means collections of countries e.g. Europe & Central Asia. Data is sourced from the World Bank and turned into a standard normalized CSV."
},
{
"user": "okfn",
"repo": "licenses",
"branch": "master",
"path": "datapackage.json",
"stars": 62,
"title": "Licenses",
"description": "a list of licenses."
},
{
"user": "datasets",
"repo": "oil-prices",
"branch": "master",
"path": "datapackage.json",
"stars": 54,
"title": "Brent and WTI Spot Prices",
"description": null
},
{
"user": "jwyg",
"repo": "data-journalism-courses",
"branch": "master",
"path": "datapackage.json",
"stars": 51,
"title": "Data Journalism Courses",
"description": "List of data journalism courses and programmes from universities and higher education institutions around the world."
},
{
"user": "okfn",
"repo": "publicbodies",
"branch": "master",
"path": "datapackage.json",
"stars": 49,
"title": "Database of Public Bodies (Government Entities)",
"description": null
},
{
"user": "mattcg",
"repo": "language-subtag-registry",
"branch": "master",
"path": "datapackage.json",
"stars": 48,
"title": "BCP 47/IANA language subtag data",
"description": "Full BCP 47 language subtag data from the official IANA repository, in JSON format with multiple indices."
},
{
"user": "openclimatedata",
"repo": "global-carbon-budget",
"branch": "main",
"path": "datapackage.json",
"stars": 48,
"title": "Global Carbon Budget",
"description": "Global carbon cycle and emissions data, including fossil-fuel, cement, and land-use change emissions, atmospheric growth, and ocean and land sinks"
},
{
"user": "datasets",
"repo": "s-and-p-500-companies-financials",
"branch": "master",
"path": "datapackage.json",
"stars": 44,
"title": "S&P 500 Companies with Financial Information",
"description": null
},
{
"user": "inigoflores",
"repo": "ds-codigos-postales-ine-es",
"branch": "master",
"path": "datapackage.json",
"stars": 44,
"title": "Dataset de Códigos Postales (Callejero INE)",
"description": null
},
{
"user": "inigoflores",
"repo": "ds-codigos-postales",
"branch": "master",
"path": "datapackage.json",
"stars": 39,
"title": "Dataset de Códigos Postales",
"description": "Geometrías de todos los códigos postales de España, incluyendo los códigos INE de los municipios asociados"
},
{
"user": "datasets",
"repo": "finance-vix",
"branch": "master",
"path": "datapackage.json",
"stars": 37,
"title": "VIX - CBOE Volatility Index",
"description": null
},
{
"user": "seattleio",
"repo": "seattle-boundaries-data",
"branch": "master",
"path": "datapackage.json",
"stars": 37,
"title": "seattle-boundaries-data",
"description": "GeoJSON for various boundaries within Seattle"
},
{
"user": "jrnold",
"repo": "CDB90",
"branch": "master",
"path": "datapackage.json",
"stars": 37,
"title": "CDB90 Battle Dataset",
"description": "A database of over 600 battles that were fought between 1600AD and 1973AD. Descriptive data include battle name, date, and location; the strengths and losses on each side; identification of the victor; temporal duration of the battle; and selected environmental and tactical environment descriptors (such as type of fortifications, type of tactical scheme, weather conditions, width of front, etc.)This dataset is a revised, cleaned, expanded and packaged version of Helmbold's CDB90 data. However, it does not add any new battles to the data."
},
{
"user": "datasets",
"repo": "geoip2-ipv4",
"branch": "master",
"path": "datapackage.json",
"stars": 35,
"title": "IPv4 geolocation",
"description": null
},
{
"user": "datasets-br",
"repo": "city-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 34,
"title": "Municipalities of Brazil and IBGE codes",
"description": "Brazilian city names, official codes (IBGE), and abbreviations throughout the country's history"
},
{
"user": "robbi5",
"repo": "german-gov-domains",
"branch": "master",
"path": "datapackage.json",
"stars": 33,
"title": "German Government Domains",
"description": "An unofficial and incomplete list of German Government Domains"
},
{
"user": "yetzt",
"repo": "postleitzahlen",
"branch": "master",
"path": "datapackage.json",
"stars": 31,
"title": "Postleitzahlen Deutschland",
"description": "german postcode areas 2020"
},
{
"user": "datasets",
"repo": "nasdaq-listings",
"branch": "master",
"path": "datapackage.json",
"stars": 30,
"title": "Nasdaq Listings",
"description": null
},
{
"user": "datasets",
"repo": "gold-prices",
"branch": "master",
"path": "datapackage.json",
"stars": 30,
"title": "Gold Prices",
"description": null
},
{
"user": "datopian",
"repo": "datahub-qa",
"branch": "master",
"path": "datapackage.json",
"stars": 29,
"title": "datahub-qa",
"description": null
},
{
"user": "datasets",
"repo": "imf-weo",
"branch": "master",
"path": "datapackage.json",
"stars": 29,
"title": "IMF World Economic Outlook Database",
"description": null
},
{
"user": "datasets-br",
"repo": "prenomes",
"branch": "master",
"path": "datapackage.json",
"stars": 28,
"title": "Prenomes de habitantes do Brasil",
"description": null
},
{
"user": "cihai",
"repo": "unihan-etl",
"branch": "master",
"path": "datapackage.json",
"stars": 28,
"title": "Unicode Han Database (Unihan)",
"description": null
},
{
"user": "datasets",
"repo": "media-types",
"branch": "master",
"path": "datapackage.json",
"stars": 24,
"title": "Media Types",
"description": "List of Media Types, Media Subtypes, and their extensions."
},
{
"user": "datasets",
"repo": "top-level-domain-names",
"branch": "master",
"path": "datapackage.json",
"stars": 21,
"title": "Top Level Domain Names",
"description": "This Data Package contains the delegation details of top-level domains"
},
{
"user": "warrantgroup",
"repo": "IMO-Vessel-Codes",
"branch": "master",
"path": "datapackage.json",
"stars": 21,
"title": "IMO Vessel Codes",
"description": "List of IMO coded vessels, vessel type, flag code and vessel names"
},
{
"user": "opentrials",
"repo": "registers",
"branch": "master",
"path": "datapackage.json",
"stars": 21,
"title": "Public and Private registers for OpenTrials",
"description": "This is Data Package with information on public and private registers of clinical trials"
},
{
"user": "ramikay",
"repo": "lebanon-traffic-dataset",
"branch": "master",
"path": "datapackage.json",
"stars": 21,
"title": "Lebanon Traffic Dataset",
"description": "Road traffic data for Lebanon collected between 2014 and 2019."
},
{
"user": "ramikay",
"repo": "lebanon-traffic-dataset",
"branch": "master",
"path": "datapackage.json",
"stars": 21,
"title": "Lebanon Traffic Dataset",
"description": "Road traffic data for Lebanon collected between 2014 and 2019."
},
{
"user": "datasets",
"repo": "ISO-Container-Codes",
"branch": "master",
"path": "datapackage.json",
"stars": 20,
"title": "ISO 6346 Container Type Codes",
"description": "List of ISO 6346 Container Type Codes"
},
{
"user": "datasets-br",
"repo": "state-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 19,
"title": "Federation units of Brazil and ISO3166:BR",
"description": "Brazilian states 2-letter codes (ISO 3166-2:BR), official 'Unidades da Federação' abbreviations throughout the country's history"
},
{
"user": "Stephen-Gates",
"repo": "GTFS",
"branch": "master",
"path": "datapackage.json",
"stars": 19,
"title": "GTFS South East Queensland",
"description": "Timetable data and stop locations for all available TransLink South East Queensland urban bus, rail and ferry services."
},
{
"user": "datasets",
"repo": "continent-codes",
"branch": "master",
"path": "datapackage.json",
"stars": 18,
"title": "List of continent codes",
"description": null
},
{
"user": "datasets",
"repo": "population-city",
"branch": "master",
"path": "datapackage.json",
"stars": 18,
"title": "City Population Annual Timeseries (UN Statistics Division)",
"description": "City population yearly timeseries for female and male, and for both sexes, collected by the United Nations Statistics Division and published by UNData in 22 Dec 2014 Next update in UNdata: Jun 2015 (est.)Periodicity: biannual. Contains two datasets in CSV format:\tunsd-citypopulation-year-both.csv\t\tSize: 2.4 MB\tunsd-citypopulation-year-fm.csv\t\tFile size: 3.7 MB Final 222 lines in both datasets contain original notes."
},
{
"user": "datasets",
"repo": "house-prices-us",
"branch": "master",
"path": "datapackage.json",
"stars": 18,
"title": "US House Price Index (Case-Shiller)",
"description": null
},
{
"user": "schoolofdata-ch",
"repo": "swiss-hospital-data",
"branch": "master",
"path": "datapackage.json",
"stars": 18,
"title": "Swiss Hospital Data",
"description": null
},
{
"user": "theodi",
"repo": "csv-validation-research",
"branch": "master",
"path": "datapackage.json",
"stars": 18,
"title": null,
"description": null
},
{
"user": "datasets",
"repo": "geo-boundaries-world-110m",
"branch": "master",
"path": "datapackage.json",
"stars": 17,
"title": "Country Polygons as GeoJSON at 1:110m",
"description": "geodata data package providing geojson polygons for all the world's countries"
},
{
"user": "datasets",
"repo": "sea-level-rise",
"branch": "master",
"path": "datapackage.json",
"stars": 17,
"title": "Global Average Absolute Sea Level Change, 1880-2014",
"description": "This data contains cumulative changes in sea level for the world’s oceans since 1880, based on a combination of long-term tide gauge measurements and recent satellite measurements."
},
{
"user": "datasets",
"repo": "browser-stats",
"branch": "master",
"path": "datapackage.json",
"stars": 17,
"title": "Web Browser Usage Statistics",
"description": null
},
{
"user": "datasets",
"repo": "nyse-other-listings",
"branch": "master",
"path": "datapackage.json",
"stars": 16,
"title": "NYSE and Other Listings",
"description": null
},
{
"user": "datasets",
"repo": "global-temp",
"branch": "master",
"path": "datapackage.json",
"stars": 16,
"title": "Global Temperature Time Series",
"description": null
},
{
"user": "centraldedados",
"repo": "nomes_proprios",
"branch": "master",
"path": "datapackage.json",
"stars": 16,
"title": "Nomes próprios em Portugal",
"description": "Listas de ocorrências de nomes próprios, e de nomes próprios aprovados ou rejeitados pelo IRN"
},
{
"user": "datasets",
"repo": "ppp",
"branch": "master",
"path": "datapackage.json",
"stars": 15,
"title": "Purchasing power parity (PPP)",
"description": "Data are sourced from the World Bank, International Comparison Program database. One dataset is provided: PPP conversion factor, GDP (LCU per international $)."
},
{
"user": "frictionlessdata",
"repo": "example-continuous-data-integration",
"branch": "master",
"path": "datapackage.json",
"stars": 14,
"title": null,
"description": null
},
{
"user": "datasets",
"repo": "inflation",
"branch": "master",
"path": "datapackage.json",
"stars": 14,
"title": "Annual inflation by GDP deflator and consumer prices",
"description": null
},
{
"user": "investigacion",
"repo": "divisiones-territoriales-data",
"branch": "master",
"path": "datapackage.json",
"stars": 14,
"title": "Divisiones territoriales de Costa Rica",
"description": "Divisiones territoriales de Costa Rica: provincias, cantones y distritos. (Territorial divisions of Costa Rica.)"
},
{
"user": "datasets",
"repo": "natural-gas",
"branch": "master",
"path": "datapackage.json",
"stars": 14,
"title": "Natural gas prices",
"description": null
},
{
"user": "datasets",
"repo": "commodity-prices",
"branch": "master",
"path": "datapackage.json",
"stars": 14,
"title": "Commodity prices",
"description": null
},
{
"user": "n0rdlicht",
"repo": "rki-vaccination-scraper",
"branch": "main",
"path": "datapackage.json",
"stars": 14,
"title": "COVID-19 Vaccination Rates in Germany",
"description": null
},
{
"user": "datasets",
"repo": "co2-ppm",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "CO2 PPM - Trends in Atmospheric Carbon Dioxide",
"description": "Data are sourced from the US Government's Earth System Research Laboratory, Global Monitoring Division. Two main series are provided: the Mauna Loa series (which has the longest continuous series since 1958) and a Global Average series (a global average over marine surface sites)."
},
{
"user": "johnlsheridan",
"repo": "occupations",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "List of occupations",
"description": null
},
{
"user": "centraldedados",
"repo": "protecao_civil",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "Ocorrências da Proteção Civil",
"description": "Ocorrências registadas pela Autoridade Nacional de Proteção Civil (2016-2018)"
},
{
"user": "datasets",
"repo": "corruption-perceptions-index",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "Corruption Perceptions Index",
"description": null
},
{
"user": "foodopendata",
"repo": "food-datasets",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "A list of datasets related to Food",
"description": null
},
{
"user": "datasets",
"repo": "bond-yields-us-10y",
"branch": "master",
"path": "datapackage.json",
"stars": 13,
"title": "10 year US Government Bond Yields (long-term interest rate)",
"description": null
},
{
"user": "datasets",
"repo": "cpi",
"branch": "master",
"path": "datapackage.json",
"stars": 12,
"title": "Annual Consumer Price Index (CPI)",
"description": "Annual Consumer Price Index (CPI) for most countries in the world. Reference year is 2005."
},
{
"user": "datasets",
"repo": "cpi",
"branch": "master",
"path": "datapackage.json",
"stars": 12,
"title": "Annual Consumer Price Index (CPI)",
"description": "Annual Consumer Price Index (CPI) for most countries in the world. Reference year is 2005."
},
{
"user": "datasets-br",
"repo": "unitex-pt-br",
"branch": "master",
"path": "datapackage.json",
"stars": 11,
"title": "Brazilian portuguese in Unitex tabular representations",
"description": "UnitexGramLab sources of pt-BR dictionary adapted to Frictionlessdata.io standards for interoperability."
},
{
"user": "openclimatedata",
"repo": "paris-agreement-entry-into-force",
"branch": "master",
"path": "datapackage.json",
"stars": 11,
"title": "Entry Into Force of the Paris Climate Agreement",
"description": "Combined dataset of signature, ratification, acceptance, or approval status of the Paris Climate Agreement, and the emissions shares used for entry into force."
},
{
"user": "jrnold",
"repo": "civil_war_era_findata",
"branch": "master",
"path": "datapackage.json",
"stars": 11,
"title": "Civil War (US) Era Financial Market Data",
"description": "Miscellaneous financial and economic data from the during the U.S. Civil War This is by no means a complete collection of available data, but consists of some datasets that I found or collected for my own research."
},
{
"user": "medialab",
"repo": "ricardo_data",
"branch": "master",
"path": "datapackage.json",
"stars": 11,
"title": "RICardo, Research on International Commerce: trade between Nations from c. 1800 to 1938",
"description": "RICardo (Research on International Commerce) is a project dedicated to trade between nations over a period spanning the beginning of the Industrial Revolution to the eve of the Second World War. It combines a historical trade database covering all of the world’s countries and a website which invites to an exploration of the history of international trade through data visualizations."
},
{
"user": "datasets",
"repo": "world-religion-projections",
"branch": "master",
"path": "datapackage.json",
"stars": 10,
"title": "World Religion Projections ",
"description": "This dataset contains the estimated religious composition of 198 countries and territories for 2010"
},
{
"user": "datasets",
"repo": "cpi-us",
"branch": "master",
"path": "datapackage.json",
"stars": 10,
"title": "US Consumer Price Index and Inflation (CPI)",
"description": null
},
{
"user": "datasets",
"repo": "breast-cancer",
"branch": "master",
"path": "datapackage.json",
"stars": 10,
"title": "Breast cancer",
"description": null
},
{
"user": "DemocracyClub",
"repo": "ge2015-election-data",
"branch": "master",
"path": "datapackage.json",
"stars": 10,
"title": "UK European Election Results 2014",
"description": null
},
{
"user": "datasets",
"repo": "gini-index",
"branch": "master",
"path": "datapackage.json",
"stars": 9,
"title": "Historic values of the GINI Index",
"description": "The repository of the data package of the GINI Index"
},
{
"user": "datasets",
"repo": "emojis",
"branch": "master",
"path": "datapackage.json",
"stars": 9,
"title": "UTS #51 Unicode Emoji",
"description": null
},
{
"user": "OpenEnergyData",
"repo": "energy-data-ch",
"branch": "master",
"path": "datapackage.json",
"stars": 9,
"title": "Datasets related to Energy with a focus on Switzerland",
"description": null
},
{
"user": "openclimatedata",
"repo": "national-climate-plans",
"branch": "main",
"path": "datapackage.json",
"stars": 9,
"title": "National Climate Plans: (Intended) Nationally Determined Contributions",
"description": "(Intended) Nationally Determined Contributions as provided in the UNFCCC registries, containing only the main document and using the English version if multiple are available"
},
{
"user": "datasets",
"repo": "dac-and-crs-code-lists",
"branch": "main",
"path": "datapackage.json",
"stars": 9,
"title": "DAC and CRS code lists",
"description": "The DAC Secretariat maintains various code lists which are used by donors to report on their aid flows to the DAC databases. In addition, these codes are used to classify information in the DAC databases."
},
{
"user": "codeforspain",
"repo": "ds-organizacion-administrativa",
"branch": "master",
"path": "datapackage.json",
"stars": 9,
"title": "Organización Administrativa de España",
"description": null
},
{
"user": "datasets",
"repo": "co2-fossil-by-nation",
"branch": "master",
"path": "datapackage.json",
"stars": 8,
"title": "CO2 Emissions from Fossil Fuels since 1751, By Nation",
"description": null
},
{
"user": "OSMBrasil",
"repo": "CRP",
"branch": "master",
"path": "datapackage.json",
"stars": 8,
"title": "Convenções do CRP",
"description": "Convenções para o Código de Roteamento Postal (CRP)."
},
{
"user": "datasets",
"repo": "geo-boundaries-us-110m",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "United States Polygons as GeoJSON (.geojson/.topojson) at 1:110m",
"description": "geodata data package providing geojson polygons for United States' Internal Administrative Boundaries"
},
{
"user": "datasets",
"repo": "co2-ppm-daily",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "CO2 PPM - Trends in Atmospheric Carbon Dioxide",
"description": null
},
{
"user": "datasets",
"repo": "glwd",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "Global Lakes and Wetlands Database Levels 1 and 2 Polygons as GeoJSON (.geojson/.topojson) and Shapefiles (.shp)",
"description": "geodata data package providing geojson polygons and shapefiles for Global Lakes and Wetlands Database"
},
{
"user": "datasets",
"repo": "geo-nuts-administrative-boundaries",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "European NUTS boundaries as GeoJSON at 1:60m",
"description": "geodata data package providing geojson polygons and shp for administratives European NUTS levels 1, 2 and 3"
},
{
"user": "datasets",
"repo": "glacier-mass-balance",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "Average cumulative mass balance of reference Glaciers worldwide",
"description": "This is cumulative change in mass balance of a set of reference glaciers worldwide beginning in 1945. The values represents the average of all the glaciers that were measured. Negative values indicate a net loss of ice and snow compared with the base year of 1945. For consistency, measurements are in meters of water equivalent, which represent changes in the average thickness of a glacier."
},
{
"user": "datasets",
"repo": "IMO-IMDG-Codes",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "IMO IMDG Classification Codes",
"description": "For the purposes of this Code, dangerous goods are classified in different classes, to subdivide a number of these classes and to define and describe characteristics and properties of the substances, material and articles which would fall within each class or division. General provisons for each class or division are given. Individual dangerous goods are listed in the Dangerous Goods List, with the class and any specific requirements. In accordance with the criteria for the selection of marine pollutants for the purposes of Annex III of the International Convention for the Prevention of Pollution from Ships, 1973, as modified by the Protocol of 1978 relating thereto (MARPOL 73/78), a number of dangerous substances in the various classes have also been identified as substances harmful to the marine environment (MARINE POLLUTANTS)."
},
{
"user": "datasets",
"repo": "euribor",
"branch": "master",
"path": "datapackage.json",
"stars": 7,
"title": "The Euribor Benchmark Rates",
"description": "The Euribor Benchmark rates by year and granularity"
},
{
"user": "datopian",
"repo": "datahub-kpis",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "DataHub KPIs",
"description": "DataHub KPIs [ ](https"
},
{
"user": "okfn",
"repo": "cop21",
"branch": "gh-pages",
"path": "datapackage.json",
"stars": 6,
"title": "Negotiating Texts for COP21 UNFCCC",
"description": null
},
{
"user": "okfn",
"repo": "opendatasites",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "Open Data Websites (Portals and Catalogs)",
"description": null
},
{
"user": "datasets",
"repo": "house-prices-uk",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "House Prices in the UK since 1953",
"description": null
},
{
"user": "datasets",
"repo": "cofog",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "Classification of the Functions of Government",
"description": "Classification of the Functions of Government (COFOG) is a classification defined by the United Nations Statistics Division. Its purpose is to \"classify the purpose of transactions such as outlays on final consumption expenditure, intermediate consumption, gross capital formation and capital and current transfers, by general government\" (from home page)."
},
{
"user": "mikehiggins",
"repo": "hk-govt-land-sales",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "Hong Kong Government Land Sales",
"description": "A dataset of Hong Kong Government land sales"
},
{
"user": "datasets",
"repo": "gdp-us",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "Gross Domestic Product of the United States (US GDP)",
"description": null
},
{
"user": "snikproject",
"repo": "ontology",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "SNIK",
"description": null
},
{
"user": "openclimatedata",
"repo": "countrygroups",
"branch": "master",
"path": "datapackage.json",
"stars": 6,
"title": "Country Groups",
"description": "Country groups"
},
{
"user": "datasets",
"repo": "lme-large-marine-ecosystems",
"branch": "master",
"path": "datapackage.json",
"stars": 5,
"title": "LME (Large Marine Ecosystems) of the World",
"description": "geodata data package providing geojson polygons and shapefiles for LME (Large Marine Ecosystems)"
},
{
"user": "datasets",
"repo": "population-global-historical",
"branch": "master",
"path": "datapackage.json",
"stars": 5,
"title": "Global Historical Population",
"description": null
},
{
"user": "digitalfreedom",
"repo": "data-vendors",
"branch": "master",
"path": "datapackage.json",
"stars": 5,
"title": "Surveillance Vendors",
"description": "A data package of vendors of surveillance tech"
},
{
"user": "open-data-kazakhstan",
"repo": "covid-19-kz",
"branch": "master",
"path": "datapackage.json",
"stars": 5,
"title": "COVID-19 in Kazakhstan",
"description": null
},