forked from lfph/lfph-landscape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprocessed_landscape.yml
6975 lines (6975 loc) · 291 KB
/
processed_landscape.yml
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
# THIS FILE IS GENERATED AUTOMATICALLY!
landscape:
- category:
name: PHA-Deployed App
subcategories:
- subcategory:
name: GAEN Bluetooth
items:
- item:
name: Austria (Stopp Corona)
description: Together we contribute to interrupting the chain of infection of the corona infections as quickly as possible!
homepage_url: 'https://www.stopp-corona.at'
repo_url: 'https://github.com/austrianredcross/stopp-corona-android'
project_org: 'https://github.com/austrianredcross'
logo: austria.svg
crunchbase: 'https://www.crunchbase.com/organization/austrian-red-cross'
crunchbase_data:
name: Austrian Red Cross
description: National Red Cross Organization in Austria and is part of the International Red Cross and Red Crescent Movement
num_employees_min: null
num_employees_max: null
homepage: 'https://www.roteskreuz.at'
city: Vienna
region: Wien
country: Austria
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
github_data:
description: Aus Liebe zum Menschen
contributors_count: 18
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;21;7;63;35;119;105;211;322;151;57;14;2;14;3;0
stars: 405
languages:
- name: Kotlin
value: 735325
color: '#F18E33'
- name: Swift
value: 452514
color: '#ffac45'
- name: HTML
value: 413198
color: '#e34c26'
- name: Java
value: 131649
color: '#b07219'
- name: Shell
value: 2062
color: '#89e051'
- name: Ruby
value: 902
color: '#701516'
latest_commit_link: /austrianredcross/stopp-corona-android/commit/df6beddcb297114b4fbd4d8e17172f934ea59c61
latest_commit_date: '2020-07-23T15:17:06Z'
firstWeek: 2019-08-11Z
license: Apache License 2.0
contributors_link: 'https://github.com/austrianredcross/stopp-corona-android/graphs/contributors'
repos:
- url: 'https://github.com/austrianredcross/stopp-corona-android'
stars: 250
- url: 'https://github.com/austrianredcross/stopp-corona-ios'
stars: 149
- url: 'https://github.com/austrianredcross/RCA-CoronaApp-Backend'
stars: 4
- url: 'https://github.com/austrianredcross/meta'
stars: 2
- url: 'https://github.com/austrianredcross/stopp-corona-documentation'
stars: 0
github_start_commit_data:
start_commit_link: /austrianredcross/stopp-corona-ios/commit/01748107c25eb224968f9296648c84f7d9a8b236
start_date: '2020-04-23T10:17:57Z'
image_data:
fileName: austria-stopp-corona.svg
hash: 3/wAXUzgcGkuALwplet/Rqu7Ya/gi8s/Ldlxq3hwEjQ=
best_practice_data:
badge: false
percentage: null
- item:
name: Canada (COVID Alert)
description: >-
Together, let's limit the spread of COVID-19 and prevent future outbreaks. COVID Alert helps us break the cycle of infection. The app can let
people know of possible exposures before any symptoms appear.
homepage_url: 'https://www.canada.ca/en/public-health/services/diseases/coronavirus-disease-covid-19/covid-alert.html'
repo_url: 'https://github.com/cds-snc/covid-alert-app'
logo: canada.svg
crunchbase: 'https://www.crunchbase.com/organization/health-canada'
crunchbase_data:
name: Health Canada
description: Health Canada is the federal department responsible for helping Canadians maintain and improve their health.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://hc-sc.gc.ca/index-eng.php'
city: Ottawa
region: Ontario
country: Canada
twitter: 'https://twitter.com/healthcanada'
linkedin: 'https://www.linkedin.com/company/health-canada'
acquisitions: []
parents: []
stockExchange: null
github_data:
languages:
- name: TypeScript
value: 281139
color: '#2b7489'
- name: JavaScript
value: 183441
color: '#f1e05a'
- name: Python
value: 136528
color: '#3572A5'
- name: HCL
value: 52607
- name: HTML
value: 41521
color: '#e34c26'
- name: Kotlin
value: 41075
color: '#F18E33'
- name: Objective-C
value: 18785
color: '#438eff'
- name: CSS
value: 16678
color: '#563d7c'
- name: Ruby
value: 14339
color: '#701516'
- name: Java
value: 6700
color: '#b07219'
- name: Shell
value: 1773
color: '#89e051'
- name: Dockerfile
value: 980
color: '#384d54'
- name: Starlark
value: 602
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;99;71;37;58;515;396;406;359;302;236;86
firstWeek: 2019-08-11Z
stars: 461
license: Apache License 2.0
description: Exposure notification client application / Application client de notification d'exposition
latest_commit_date: '2020-08-04T23:53:17Z'
latest_commit_link: /cds-snc/covid-alert-app/commit/ed72cb83de07fa8a43a11bf3ef7b52abdc23e8a1
release_date: '2020-07-28T23:39:54Z'
release_link: 'https://github.com/cds-snc/covid-alert-app/releases'
contributors_count: 51
contributors_link: 'https://github.com/cds-snc/covid-alert-app/graphs/contributors'
repos:
- url: 'https://github.com/cds-snc/covid-alert-app'
stars: 446
- url: 'https://github.com/cds-snc/covid-alert-portal'
stars: 15
github_start_commit_data:
start_commit_link: /cds-snc/covid-alert-app/commit/033d9718075d260500aedb8d1d2ee631300ed915
start_date: '2020-05-18T20:38:12Z'
image_data:
fileName: canada-covid-alert.svg
hash: EEuzSvCt0s+v7wi68M7wrmL7ztl7HLh1vMlHPzHicLQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2017-11-09T19:19:31.000Z
- item:
name: Denmark (Smittestop)
description: Smittestop allows all of us to help stop the spread of COVID-19.
homepage_url: 'https://smittestop.dk/'
logo: denmark.svg
crunchbase: 'https://www.crunchbase.com/organization/denmark-ministry-of-health'
crunchbase_data:
name: Denmark Ministry of Health
description: Denmark Ministry of Health
num_employees_min: null
num_employees_max: null
homepage: 'https://sum.dk/English.aspx'
city: Copenhagen
region: Hovedstaden
country: Denmark
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: denmark-smittestop.svg
hash: a7Eo5WJNJZ8r8yFC4hdgK0Q0jTd/c69UHhkziDfjpcc=
best_practice_data:
badge: false
percentage: null
- item:
name: Germany (Corona-Warn-App)
description: The Corona-Warn-App is an app that helps trace infection chains of SARS-CoV-2 (which can cause COVID-19) in Germany.
homepage_url: 'https://www.coronawarn.app/en/'
repo_url: 'https://github.com/corona-warn-app/cwa-app-android'
project_org: 'https://github.com/corona-warn-app'
logo: germany.svg
crunchbase: 'https://www.crunchbase.com/organization/robert-koch-foundation'
crunchbase_data:
name: Robert Koch Foundation
description: The Robert Koch Institute is a Federal Institute within the portfolio of the Federal Ministry of Health.
num_employees_min: 501
num_employees_max: 1000
homepage: 'http://www.rki.de'
city: Berlin
region: Berlin
country: Germany
twitter: 'https://www.twitter.com/rki_de'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
github_data:
description: The official COVID-19 exposure notification app for Germany.
contributors_count: 236
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;66;249;142;928;1669;808;323;191;246;226;181;131;102
stars: 9169
languages:
- name: Swift
value: 1355502
color: '#ffac45'
- name: Java
value: 951607
color: '#b07219'
- name: Kotlin
value: 856752
color: '#F18E33'
- name: HTML
value: 853618
color: '#e34c26'
- name: CSS
value: 215506
color: '#563d7c'
- name: JavaScript
value: 19789
color: '#f1e05a'
- name: Ruby
value: 13754
color: '#701516'
- name: Shell
value: 13391
color: '#89e051'
- name: FreeMarker
value: 12191
color: '#0050b2'
- name: Dockerfile
value: 4277
color: '#384d54'
- name: TeX
value: 4262
color: '#3D6117'
- name: Objective-C
value: 1167
color: '#438eff'
- name: Python
value: 377
color: '#3572A5'
latest_commit_link: /corona-warn-app/cwa-app-android/commit/8f297400a2b537fa722d265c9ee6ad424e496bc9
latest_commit_date: '2020-08-04T15:48:09Z'
firstWeek: 2019-08-11Z
license: Apache License 2.0
contributors_link: 'https://github.com/corona-warn-app/cwa-app-android/graphs/contributors'
repos:
- url: 'https://github.com/corona-warn-app/cwa-app-android'
stars: 1939
- url: 'https://github.com/corona-warn-app/cwa-documentation'
stars: 3307
- url: 'https://github.com/corona-warn-app/cwa-server'
stars: 1572
- url: 'https://github.com/corona-warn-app/cwa-app-ios'
stars: 1362
- url: 'https://github.com/corona-warn-app/cwa-website'
stars: 433
- url: 'https://github.com/corona-warn-app/cwa-verification-server'
stars: 312
- url: 'https://github.com/corona-warn-app/cwa-verification-portal'
stars: 85
- url: 'https://github.com/corona-warn-app/cwa-testresult-server'
stars: 76
- url: 'https://github.com/corona-warn-app/cwa-verification-iam'
stars: 43
- url: 'https://github.com/corona-warn-app/cwa-wishlist'
stars: 25
- url: 'https://github.com/corona-warn-app/cwa-backlog'
stars: 9
- url: 'https://github.com/corona-warn-app/cwa-hotline'
stars: 6
github_start_commit_data:
start_commit_link: /corona-warn-app/cwa-server/commit/a25c5fde50c4536ca1b39b889b93f3c94fcbc15b
start_date: '2020-05-02T15:07:32Z'
image_data:
fileName: germany-corona-warn-app.svg
hash: NogWq+nyMZAyLW5GKvyTrtnASMLi+Kqf/gd8dNuZRCQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-07-31T09:29:00.000Z
- item:
name: Gibraltar (Beat COVID)
description: >-
Beat COVID Gibraltar has been developed by HM Government of Gibraltar and the Gibraltar Health Authority to help reduce the spread of the COVID-19
virus and keep our community safe.
homepage_url: 'https://www.gibraltar.gov.gi/beatcovidapp'
logo: gibraltar.svg
crunchbase: 'https://www.crunchbase.com/organization/government-of-gibraltar'
crunchbase_data:
name: Government of Gibraltar
description: Government of Gibraltar
num_employees_min: null
num_employees_max: null
homepage: null
city: Gibraltar
region: Gibraltar
country: Gibraltar
twitter: 'https://twitter.com/gibraltargov'
linkedin: 'https://www.linkedin.com/company/government-of-gibraltar/about/'
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: gibraltar-beat-covid.svg
hash: 0UVC8KHxjxiQ2XjnoKGJG+t+ZBWZSKxlDonR3BVltT8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T12:51:53.000Z
- item:
name: Ireland (COVID Tracker)
description: COVID Tracker is a free app for your mobile phone. It will help us to protect each other and slow the spread of coronavirus (COVID-19) in Ireland.
homepage_url: 'https://covidtracker.gov.ie/'
repo_url: 'https://github.com/HSEIreland/covid-tracker-app'
project_org: 'https://github.com/HSEIreland'
logo: ireland.svg
crunchbase: 'https://www.crunchbase.com/organization/ireland-health-service-executive'
crunchbase_data:
name: Ireland Health Service Executive
description: Ireland Health Service Executive
num_employees_min: null
num_employees_max: null
homepage: 'https://www.hse.ie/eng/'
city: Dublin
region: Dublin
country: Ireland
twitter: 'http://www.twitter.com/hselive'
linkedin: 'https://www.linkedin.com/company/health-service-executive'
acquisitions: []
parents: []
stockExchange: null
github_data:
description: Health Service Executive
contributors_count: 6
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;9;0;0;2;3;4
stars: 532
languages:
- name: TypeScript
value: 366024
color: '#2b7489'
- name: JavaScript
value: 116044
color: '#f1e05a'
- name: HCL
value: 111494
- name: Swift
value: 74926
color: '#ffac45'
- name: Java
value: 70449
color: '#b07219'
- name: Kotlin
value: 54851
color: '#F18E33'
- name: Objective-C
value: 9748
color: '#438eff'
- name: Ruby
value: 9623
color: '#701516'
- name: Makefile
value: 5363
color: '#427819'
- name: Shell
value: 4688
color: '#89e051'
- name: Starlark
value: 2512
- name: Smarty
value: 1890
- name: Dockerfile
value: 1090
color: '#384d54'
- name: C
value: 122
color: '#555555'
latest_commit_link: /HSEIreland/covid-tracker-app/commit/188ce2cd17e1c72fd132de995bc88df2acb85104
latest_commit_date: '2020-07-25T08:24:36Z'
firstWeek: 2019-08-11Z
license: MIT License
contributors_link: 'https://github.com/HSEIreland/covid-tracker-app/graphs/contributors'
repos:
- url: 'https://github.com/HSEIreland/covid-tracker-app'
stars: 364
- url: 'https://github.com/HSEIreland/covid-tracker-backend-api'
stars: 69
- url: 'https://github.com/HSEIreland/covid-tracker-infra'
stars: 45
- url: 'https://github.com/HSEIreland/covidtracker-documentation'
stars: 23
- url: 'https://github.com/HSEIreland/react-native-exposure-notification-service'
stars: 12
- url: 'https://github.com/HSEIreland/covid-tracker-lambdas'
stars: 12
- url: 'https://github.com/HSEIreland/covid-tracker-push-api'
stars: 7
github_start_commit_data:
start_commit_link: /HSEIreland/covidtracker-documentation/commit/606aae03aa7eba087a6bff73438c4ede8f7f80c9
start_date: '2020-06-26T08:50:29Z'
image_data:
fileName: ireland-covid-tracker.svg
hash: WQA9F3Y36sMK6KbCquv/5aQFmIbjVxOEli541C6Gh3M=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T18:48:31.000Z
- item:
name: Italy (Immuni)
description: Immuni is an app that helps us fight epidemics—starting with COVID-19.
homepage_url: 'https://www.immuni.italia.it/'
repo_url: 'https://github.com/immuni-app/immuni-app-android'
logo: italy.svg
crunchbase: 'https://www.crunchbase.com/organization/ministry-of-health-italy'
crunchbase_data:
name: Ministry of Health Italy
description: The Ministry of Health is a governmental agency of Italy
num_employees_min: null
num_employees_max: null
homepage: 'http://www.salute.gov.it/'
city: Rome
region: Lazio
country: Italy
twitter: 'https://twitter.com/ministerosalute'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
github_data:
languages:
- name: Swift
value: 1417882
color: '#ffac45'
- name: Kotlin
value: 740141
color: '#F18E33'
- name: Python
value: 137816
color: '#3572A5'
- name: TypeScript
value: 23618
color: '#2b7489'
- name: Ruby
value: 10044
color: '#701516'
- name: Objective-C
value: 3372
color: '#438eff'
- name: Makefile
value: 1623
color: '#427819'
- name: Shell
value: 1295
color: '#89e051'
- name: Smarty
value: 200
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;249;300;280;66;62;41;32;8;6;12;2
firstWeek: 2019-08-11Z
stars: 1371
license: GNU Affero General Public License v3.0
description: ' Official repository for the Android version of the immuni application '
latest_commit_date: '2020-07-30T16:11:20Z'
latest_commit_link: /immuni-app/immuni-app-android/commit/7116a07dda6217a596c7d09751dc63eff2848a0f
release_date: '2020-07-30T15:30:07Z'
release_link: 'https://github.com/immuni-app/immuni-app-android/releases'
contributors_count: 25
contributors_link: 'https://github.com/immuni-app/immuni-app-android/graphs/contributors'
repos:
- url: 'https://github.com/immuni-app/immuni-app-android'
stars: 830
- url: 'https://github.com/immuni-app/immuni-app-ios'
stars: 513
- url: 'https://github.com/immuni-app/immuni-backend-exposure-ingestion'
stars: 28
github_start_commit_data:
start_commit_link: /immuni-app/immuni-app-android/commit/8c4739b471754977ea42b5cc2090cd28804a141f
start_date: '2020-05-24T22:01:00Z'
image_data:
fileName: italy-immuni.svg
hash: JDyxt9+hTXG4BltwztM0hJiZraDqq+qteywbwIxoZjI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T16:04:10.000Z
- item:
name: Japan (COCOA)
description: >-
The Ministry of Health, Labor and Welfare has developed a new coronavirus contact confirmation application (COCOA) in cooperation with the new
coronavirus infection control tech team to help prevent the spread of new coronavirus infections.
homepage_url: 'https://www.mhlw.go.jp/stf/seisakunitsuite/bunya/cocoa_00138.html'
logo: japan.svg
crunchbase: 'https://www.crunchbase.com/organization/japan-ministry-of-health-labour-and-welfare'
crunchbase_data:
name: 'Japan Ministry of Health, Labour and Welfare'
description: 'Japan Ministry of Health, Labour and Welfare'
num_employees_min: null
num_employees_max: null
homepage: 'https://www.mhlw.go.jp/english/'
city: Tokyo
region: Tokyo
country: Japan
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: japan-cocoa.svg
hash: C5KDOiUBZn0cR3vf/CU+7sjGKQA9gE0oal7YL4avpIM=
best_practice_data:
badge: false
percentage: null
- item:
name: Latvia (Apturi Covid)
description: This app is the fastest way to find out if you have been exposed to COVID-19. Be in the know and make considered decisions.
homepage_url: 'https://www.apturicovid.lv/#en'
logo: latvia.svg
twitter: 'https://twitter.com/apturicovid'
crunchbase: 'https://www.crunchbase.com/organization/ministry-of-health-latvia'
crunchbase_data:
name: Ministry of Health Latvia
description: 'Leading government authority in the health sector and it is responsible for public health, health care and pharmacy.'
num_employees_min: null
num_employees_max: null
homepage: 'https://www.vm.gov.lv/en/'
city: Riga
region: Riga
country: Latvia
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: latvia-apturi-covid.svg
hash: /qsrZs1Qzib0fyGOhQsccIigtg31F2cIhugroex45Y0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T08:14:31.000Z
- item:
name: Northern Ireland (StopCOVID NI)
description: 'This app, from our health service, tells you automatically if you’ve been near someone who tests positive for COVID-19.'
homepage_url: 'https://covid-19.hscni.net/stop-covid-ni-mobile-app/'
logo: northern-ireland.svg
twitter: 'https://twitter.com/HSCInnovations'
crunchbase: 'https://www.crunchbase.com/organization/health-and-social-care-northern-ireland'
crunchbase_data:
name: Health and Social Care Northern Ireland
description: Health and Social Care Northern Ireland
num_employees_min: null
num_employees_max: null
homepage: 'http://online.hscni.net/'
city: Belfast
region: Belfast
country: United Kingdom
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: northern-ireland-stop-covid-ni.svg
hash: +Y+IMuJ9GJn7W9qyI5kMQFJl2vvOUJos3++XKlYk5es=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T19:57:06.000Z
- item:
name: Saudi Arabia (Tabaud)
description: >-
Tabaud app for smartphones is one of the latest government efforts in Saudi Arabia to combat and contain the coronavirus (COVID-19) pandemic via
Apple/Google Exposure Notification API.
homepage_url: 'https://tabaud.sdaia.gov.sa/IndexEn'
logo: saudi-arabia.svg
twitter: 'https://twitter.com/TabaudApp'
crunchbase: 'https://www.crunchbase.com/organization/saudi-arabia-ministry-of-health'
crunchbase_data:
name: Saudi Arabia Ministry of Health
description: Saudi Arabia Ministry of Health
num_employees_min: null
num_employees_max: null
homepage: 'https://www.moh.gov.sa/en/Pages/default.aspx'
city: Riyadh
region: Ar Riyad
country: Saudi Arabia
twitter: 'https://twitter.com/SaudiMOH'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: saudi-arabia-tabaud.svg
hash: UuhY32Kb9ysRD+btVxWFT4Q9QGHLZsEEnMGNAB104Jo=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T23:20:08.000Z
- item:
name: Switzerland (SwissCovid)
description: 'The app provides information on suspected infections. In this way, the chain of infection can be broken.'
homepage_url: 'https://play.google.com/store/apps/details?id=ch.admin.bag.dp3t'
repo_url: 'https://github.com/DP-3T/dp3t-app-ios-ch'
project_org: 'https://github.com/DP-3T'
logo: switzerland.svg
crunchbase: 'https://www.crunchbase.com/organization/federal-office-of-public-health-foph-switzerland'
crunchbase_data:
name: Federal Office of Public Health (FOPH) Switzerland
description: The Federal Office of Public Health (FOPH) is the Swiss federal government’s centre for public health.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.bag.admin.ch'
city: Berne
region: Bern
country: Switzerland
twitter: 'https://twitter.com/bag_int'
linkedin: 'https://www.linkedin.com/company/bag-ofsp/'
acquisitions: []
parents: []
stockExchange: null
github_data:
description: Decentralized Privacy-Preserving Proximity Tracing
contributors_count: 54
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;24;141;241;361;227;152;225;273;140;119;325;217;34;64;158;103;148;47
stars: 3681
languages:
- name: Java
value: 1146402
color: '#b07219'
- name: Swift
value: 1095614
color: '#ffac45'
- name: HTML
value: 319015
color: '#e34c26'
- name: Python
value: 52915
color: '#3572A5'
- name: Objective-C
value: 19894
color: '#438eff'
- name: Ruby
value: 14549
color: '#701516'
- name: Makefile
value: 1951
color: '#427819'
- name: Dockerfile
value: 1512
color: '#384d54'
- name: Shell
value: 826
color: '#89e051'
- name: PLpgSQL
value: 374
- name: C
value: 360
color: '#555555'
latest_commit_link: /DP-3T/dp3t-app-ios-ch/commit/e1db99ec6fa4b1aaf7c726244caa1896365d1ed0
latest_commit_date: '2020-08-04T12:24:05Z'
firstWeek: 2019-08-11Z
license: Mozilla Public License 2.0
contributors_link: 'https://github.com/DP-3T/dp3t-app-ios-ch/graphs/contributors'
repos:
- url: 'https://github.com/DP-3T/dp3t-app-ios-ch'
stars: 117
- url: 'https://github.com/DP-3T/documents'
stars: 2109
- url: 'https://github.com/DP-3T/dp3t-app-android-demo'
stars: 332
- url: 'https://github.com/DP-3T/dp3t-app-ios-demo'
stars: 242
- url: 'https://github.com/DP-3T/dp3t-sdk-android'
stars: 227
- url: 'https://github.com/DP-3T/dp3t-app-android-ch'
stars: 195
- url: 'https://github.com/DP-3T/dp3t-sdk-backend'
stars: 172
- url: 'https://github.com/DP-3T/dp3t-sdk-ios'
stars: 142
- url: 'https://github.com/DP-3T/reference_implementation'
stars: 125
- url: 'https://github.com/DP-3T/dp3t-discovery'
stars: 11
- url: 'https://github.com/DP-3T/dp3t-config-backend-ch'
stars: 6
- url: 'https://github.com/DP-3T/dp3t-ux-screenflows-ch'
stars: 3
github_start_commit_data:
start_commit_link: /DP-3T/documents/commit/3b6024918f8980d2be10eeeaf7a43d6d52b64a38
start_date: '2020-04-03T16:04:33Z'
image_data:
fileName: switzerland-swiss-covid.svg
hash: hE5ResKRbgJEbnVNOSjB+GsicURjfZrAmPCvKaph9G0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-04T07:14:11.000Z
- item:
name: Uruguay (Coronavirus UY)
description: 'Information, medical attention, and alerts of exposure to COVID-19 for residents of Uruguay.'
homepage_url: 'https://www.gub.uy/ministerio-salud-publica/coronavirus'
logo: uruguay.svg
crunchbase: 'https://www.crunchbase.com/organization/uruguay-ministry-of-public-health'
crunchbase_data:
name: Uruguay Ministry of Public Health
description: Uruguay Ministry of Public Health
num_employees_min: null
num_employees_max: null
homepage: 'https://www.gub.uy/ministerio-salud-publica/'
city: Montevideo
region: NA - Uruguay
country: Uruguay
twitter: 'https://twitter.com/MSPUruguay'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: uruguay-coronavirus-uy.svg
hash: eiCtbZU180KowWBJ54NDT/mt9ATra/oJO6MyL7X5hzk=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T23:27:05.000Z
- subcategory:
name: Non-GAEN Bluetooth
items:
- item:
name: Australia (COVIDSafe)
description: COVIDSafe helps you and all of our communities. Assist health officials to quickly understand and tackle the spread of Coronavirus (COVID-19).
homepage_url: 'https://covidsafe.gov.au/'
repo_url: 'https://github.com/AU-COVIDSafe/mobile-android'
logo: australia.svg
crunchbase: 'https://www.crunchbase.com/organization/australian-government'
crunchbase_data:
name: Australian Government
description: Australian Government website is primarily for the public and is your trusted source of government information.
num_employees_min: null
num_employees_max: null
homepage: 'https://www.australia.gov.au/'
city: Canberra
region: Australian Capital Territory
country: Australia
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
github_data:
languages:
- name: Kotlin
value: 373478
color: '#F18E33'
- name: Java
value: 101128
color: '#b07219'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;1;1;0;1;0;1;0;1;0;1;0;1
firstWeek: 2019-08-11Z
stars: 345
license: Other
description: COVIDSafe android app
latest_commit_date: '2020-08-05T01:27:40Z'
latest_commit_link: /AU-COVIDSafe/mobile-android/commit/afb55cce5d6d283194cff209be0219d04148f3db
contributors_count: 1
contributors_link: 'https://github.com/AU-COVIDSafe/mobile-android/graphs/contributors'
repos:
- url: 'https://github.com/AU-COVIDSafe/mobile-android'
stars: 345
github_start_commit_data:
start_commit_link: /AU-COVIDSafe/mobile-android/commit/b827cf3ccef72a3d38c6fc37466a99868823540f
start_date: '2020-05-08T05:23:03Z'
image_data:
fileName: australia-covid-safe.svg
hash: DlOG87bxIHD/z98F5at2cOpBSDoP0egsKI9MOPJgsSY=
best_practice_data:
badge: false
percentage: null
- item:
name: Azerbaijan (e-Tabib)
description: e-Tabib (e-Doctor) is a mobile application that helps reduce the spread of coronavirus.
homepage_url: 'https://koronavirusinfo.az/az/page/haqqimizda/e-tebib-mobil-tetbiqini-yukleyin'
logo: azerbaijan.svg
crunchbase: 'https://www.crunchbase.com/organization/cabinet-of-ministers-of-azerbaijan'
crunchbase_data:
name: Cabinet of Ministers of Azerbaijan
description: Cabinet of Ministers of Azerbaijan
num_employees_min: null
num_employees_max: null
homepage: 'https://cabmin.gov.az/en/'
city: Baku
region: Baki
country: Azerbaijan
twitter: 'https://twitter.com/azerbaijanmfa?lang=en'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: azerbaijan-e-tabib.svg
hash: f4OunJkSpgXTIq/aXOlK1pQV3QXCUEHhGDkbo3afnK0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T06:08:39.000Z
- item:
name: Canada - Alberta (ABTraceTogether)
description: Albertans can support reopening businesses while continuing to act responsibly to prevent the spread.
homepage_url: 'https://www.alberta.ca/ab-trace-together.aspx'
logo: canada-alberta.svg
crunchbase: 'https://www.crunchbase.com/organization/alberta-health-services'
crunchbase_data:
name: Alberta Health Services
description: Alberta Health Services is a Health Care company.
num_employees_min: 10001
num_employees_max: 1000000
homepage: 'http://www.albertahealthservices.ca'
city: Edmonton
region: Alberta
country: Canada
twitter: 'https://twitter.com/GoAHealth'
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: canada-alberta-ab-trace-together.svg
hash: AaVCR1YkdVogQ6UU1ZeGhobxlAXbtoGlGe1lkOjo560=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-05T21:58:34.000Z
- item:
name: Colombia (CoronApp)
description: Evaluate your health and receive recommendations on COVID-19 using the official application of the National Government of Colombia.
homepage_url: 'https://coronaviruscolombia.gov.co/Covid19/aislamiento-saludable/coronapp.html'
logo: colombia.svg
crunchbase: 'https://www.crunchbase.com/organization/government-of-colombia'
crunchbase_data:
name: Government of Colombia
description: Government of Colombia
num_employees_min: null
num_employees_max: null
homepage: null
city: Bogotá
region: Distrito Especial
country: Colombia
twitter: 'https://twitter.com/infopresidencia'
linkedin: 'https://www.linkedin.com/company/the-government-of-the-republic-of-colombia/'
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: colombia-coron-app.svg
hash: nPKu8Sv+McnIGmQbheEaVl9UHTatruUdMZlLEdjeWrE=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-08-06T01:13:43.000Z
- item:
name: Cyprus (CovTracer)
description: >-
Combating the spread of the COVID-19 epidemic requires the rapid identification of people who have come into recent contact with confirmed cases
of the SARS-Cov-2 virus. This allows for timely interventions such as evacuation and disinfection of spaces and for assistance in locating people
who have been close to a carrier or have been exposed to the virus, so that they too can be appropriately tested or treated.
homepage_url: 'https://covid-19.rise.org.cy/en/'
logo: cyprus.svg
crunchbase: 'https://www.crunchbase.com/organization/research-centre-on-interactive-media-smart-systems-and-emerging-technologies'
crunchbase_data:
name: 'Research Centre on Interactive Media, Smart Systems and Emerging Technologies'
description: 'Research Centre on Interactive Media, Smart Systems and Emerging Technologies'
num_employees_min: null
num_employees_max: null
homepage: 'https://www.rise.org.cy/en-gb/'
city: Nicosia
region: Nicosia
country: Cyprus
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: cyprus-cov-tracer.svg
hash: dE9v/Ir7dhbZOHwwScca3GA8bkfsifrUSEbZs5GRiHM=
best_practice_data:
badge: false
percentage: null
- item:
name: Czech Republic (eRouška)
description: >-
Thanks to Bluetooth, the eRouška application remembers other eRouška you have met. This will make it easier for the public health officials to
locate risky contacts.
homepage_url: 'https://erouska.cz/'
repo_url: 'https://github.com/covid19cz/erouska-android'
logo: czech-republic.svg
crunchbase: 'https://www.crunchbase.com/organization/ministry-of-health-czech-republic'
crunchbase_data:
name: Ministry of Health Czech Republic
description: Ministry of Health Czech Republic
num_employees_min: null
num_employees_max: null
homepage: 'http://www.mzcr.cz/Cizinci/'
city: Prague
region: Hlavni mesto Praha
country: Czech Republic
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
github_data:
languages:
- name: Kotlin
value: 169317
color: '#F18E33'
- name: Java
value: 1863
color: '#b07219'
- name: Shell
value: 384
color: '#89e051'
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;49;176;106;33;44;16;3;0;7;3;0;0;0;0;0;0;0;1;4;3;2
firstWeek: 2019-08-11Z
stars: 136
license: MIT License
description: Fighting against COVID-19 via privacy-first Bluetooth tracing
latest_commit_date: '2020-08-03T11:00:52Z'
latest_commit_link: /covid19cz/erouska-android/commit/ea028429c35ab5f4b3557aabd41b5b50218ea6b1
contributors_count: 19
contributors_link: 'https://github.com/covid19cz/erouska-android/graphs/contributors'
repos:
- url: 'https://github.com/covid19cz/erouska-android'
stars: 136
github_start_commit_data:
start_commit_link: /covid19cz/erouska-android/commit/e336d91d32a81f254c87757a739a5a12195b0796
start_date: '2020-03-16T11:20:59Z'
image_data:
fileName: czech-republic-e-rou-ka.svg
hash: vmQCC0jeowcpSpgTfYmtr7DJNwzXbqADUyQZaHKSY9U=
best_practice_data:
badge: false
percentage: null
- item:
name: France (StopCovid)
description: StopCovid is an application that is part of the government's overall deconfinement plan in the context of the Covid-19 epidemic.
homepage_url: 'https://www.economie.gouv.fr/stopcovid'
logo: france.svg
crunchbase: 'https://www.crunchbase.com/organization/government-of-france'
crunchbase_data:
name: Government of France
description: The Government of the French Republic exercises executive power in the French Republic.
num_employees_min: 11
num_employees_max: 50
homepage: 'http://www.gouvernement.fr/en'
city: Paris
region: Ile-de-France
country: France
twitter: 'https://www.twitter.com/gouvernementfr'
linkedin: 'https://www.linkedin.com/company/gouvernementfr'
acquisitions: []
parents: []
stockExchange: null
image_data:
fileName: france-stop-covid.svg
hash: PPZXgPT5+sTk1aJEPOJhGWlj7CY0x8gQWwOn6aKxwNE=
best_practice_data:
badge: false