-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathprocessed_landscape.yml
More file actions
9839 lines (9839 loc) · 411 KB
/
processed_landscape.yml
File metadata and controls
9839 lines (9839 loc) · 411 KB
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: COVID Verification
subcategories:
- subcategory:
name: W3C Standards
items:
- item:
name: Cardea
description: >-
Cardea provides an easily verifiable, trustworthy, unalterable proof of health tests or vaccination that can be shared in a privacy-preserving
way.
homepage_url: https://www.cardea.app
project: foundationproject
repo_url: https://github.com/thecardeaproject/cardea
project_org: https://github.com/thecardeaproject
logo: cardea.svg
twitter: http://www.twitter.com/cardeaproject
crunchbase: https://www.crunchbase.com/organization/lf-public-health
extra:
accepted: '2021-04-29'
artwork_url: https://github.com/lfph/artwork/tree/main/projects/cardea
crunchbase_data:
name: LF Public Health
description: An open source software foundation focused on the needs of public health authorities
num_employees_min: 11
num_employees_max: 50
homepage: http://www.lfph.io
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/lfpubhealth
linkedin: https://www.linkedin.com/company/lfph
acquisitions: []
parents:
- https://www.crunchbase.com/organization/linux-foundation
stockExchange: null
company_type: Non Profit
industries:
- Software
github_data:
description: ''
contributors_count: 1
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;1;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
stars: 0
languages: []
latest_commit_link: /thecardeaproject/governance/commit/5b4fc83709407335ce5582466aaebc21e2bb3513
latest_commit_date: '2022-09-21T19:32:12Z'
firstWeek: 2022-04-24Z
license: Apache License 2.0
contributors_link: https://github.com/thecardeaproject/governance/graphs/contributors
repos:
- url: https://github.com/thecardeaproject/governance
stars: 0
github_start_commit_data:
start_commit_link: /thecardeaproject/cardea/commit/fa1bd3e07846b0001da33c3a44c4884635778044
start_date: '2021-05-17T20:20:41Z'
image_data:
fileName: cardea.svg
hash: zxfHoMy4yJdeVd3oqCp1vX13nhZ4BZndD+71NpkZVcI=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-10-13T15:14:51.000Z
- category:
name: Treatments and Therapies
subcategories:
- subcategory:
name: Rare Diseases
items:
- item:
name: RareCamp
description: RareCamp is a software platform to develop treatments for monogenic rare diseases.
homepage_url: https://rarecamp.org/
project: foundationproject
repo_url: https://github.com/RareCamp/RareCamp
project_org: https://github.com/RareCamp
logo: rarecamp_logo_lfph.svg
extra:
accepted: '2022-09-04'
organization:
name: RareCamp
crunchbase_data:
name: RareCamp
parents: []
github_data:
description: ''
contributors_count: 14
contributions: 0;0;0;0;0;0;0;0;0;0;0;0;1;3;3;0;0;0;0;6;4;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;2;0;0;0
stars: 48
languages:
- name: TypeScript
value: 121162
color: '#2b7489'
- name: Less
value: 51324
- name: SCSS
value: 51035
- name: JavaScript
value: 48172
color: '#f1e05a'
- name: HTML
value: 12284
color: '#e34c26'
- name: CSS
value: 4733
color: '#563d7c'
- name: Dockerfile
value: 349
color: '#384d54'
- name: Shell
value: 191
color: '#89e051'
latest_commit_link: /RareCamp/RareCamp/commit/97e68985cbd991ab3d010854d8b78769a06bbe19
latest_commit_date: '2021-12-15T21:21:24Z'
firstWeek: 2022-04-24Z
license: Apache License 2.0
contributors_link: https://github.com/RareCamp/RareCamp/graphs/contributors
repos:
- url: https://github.com/RareCamp/RareCamp
stars: 45
- url: https://github.com/RareCamp/rarecamp.github.io
stars: 2
- url: https://github.com/RareCamp/anonymizer
stars: 1
- url: https://github.com/RareCamp/anonymizer-ui
stars: 0
github_start_commit_data:
start_commit_link: /RareCamp/RareCamp/commit/64e6245e46008ba975d7031faf778274c7c72bd6
start_date: '2020-12-05T23:10:39Z'
image_data:
fileName: rare-camp.svg
hash: H/ktJ0CaXOzNZhJbd3gfu+E5XVqZHtbeak97VsqeCow=
best_practice_data:
badge: false
percentage: null
- category:
name: PHA-Deployed App
subcategories:
- subcategory:
name: GAEN Bluetooth
items:
- item:
name: Austria (Stopp Corona)
description: Together we can 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
company_type: Non Profit
industries: []
github_data:
description: Aus Liebe zum Menschen
contributors_count: 22
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;0;0;0;0;0;0
stars: 441
languages:
- name: Kotlin
value: 979319
color: '#F18E33'
- name: Swift
value: 680705
color: '#ffac45'
- name: HTML
value: 475007
color: '#e34c26'
- name: Java
value: 131649
color: '#b07219'
- name: Shell
value: 2062
color: '#89e051'
- name: Ruby
value: 1772
color: '#701516'
- name: CSS
value: 309
color: '#563d7c'
latest_commit_link: /austrianredcross/stopp-corona-android/commit/c799461b99fa23097f68bade7a6f4a334e9c5912
latest_commit_date: '2022-03-01T15:36:02Z'
firstWeek: 2022-04-24Z
license: GNU Affero General Public License v3.0
contributors_link: https://github.com/austrianredcross/stopp-corona-android/graphs/contributors
repos:
- url: https://github.com/austrianredcross/stopp-corona-android
stars: 274
- url: https://github.com/austrianredcross/stopp-corona-ios
stars: 157
- url: https://github.com/austrianredcross/RCA-CoronaApp-Backend
stars: 8
- 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: Bermuda (WeHealth Bermuda)
description: >-
a new, free smartphone application that provides anonymous COVID-19 exposure notifications. It is one of the most sophisticated apps available
anywhere in the world for helping to control the spread of COVID-19.
homepage_url: https://www.gov.bm/wehealth-bermuda
logo: bermuda.svg
crunchbase: https://www.crunchbase.com/organization/bermuda-ministry-of-health
crunchbase_data:
name: Bermuda Ministry of Health
description: The Ministry of Health is the caretaker of the island’s health system.
num_employees_min: null
num_employees_max: null
homepage: https://www.gov.bm/ministry/health
city: Hamilton
region: Hamilton
country: Bermuda
twitter: https://twitter.com/DoHBermuda
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Health Care
image_data:
fileName: bermuda-we-health-bermuda.svg
hash: NyU13Ob6OwaJJOtdcmPVVqWnjlRRl5LN8fGu/aFLnOQ=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-05T16:19:35.000Z
- item:
name: Brazil (Coronavírus-SUS)
description: The Ministry of Health of Brazil launches the Coronavírus-SUS app with the objective of raising awareness about the Corona Virus COVID-19.
homepage_url: https://www.gov.br/saude/acl_users/credentials_cookie_auth/require_login
logo: brazil.svg
crunchbase: https://www.crunchbase.com/organization/brazilgovernment
crunchbase_data:
name: Brazil Government
description: The federal government of Brazil is the national central government of the Federative Republic of Brazil.
num_employees_min: null
num_employees_max: null
homepage: http://www.brazilgovnews.gov.br
city: Brasília
region: Rio Grande do Norte
country: Brazil
twitter: https://twitter.com/brazilgovnews
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Government
- Information Technology
image_data:
fileName: brazil-coronav-rus-sus.svg
hash: 5gKI5abeadMAYnhuG2VeFhYuO5Eewfl3lfLUBc87mg0=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2019-06-12T18:48:14.000Z
- 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/errors/403.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
company_type: For Profit
industries:
- Health Care
github_data:
languages:
- name: TypeScript
value: 695185
color: '#2b7489'
- name: Python
value: 450278
color: '#3572A5'
- name: Go
value: 303436
color: '#00ADD8'
- name: JavaScript
value: 281251
color: '#f1e05a'
- name: HTML
value: 166583
color: '#e34c26'
- name: HCL
value: 121777
- name: Kotlin
value: 110869
color: '#F18E33'
- name: Ruby
value: 68611
color: '#701516'
- name: Objective-C
value: 43495
color: '#438eff'
- name: SCSS
value: 41987
- name: Shell
value: 9690
color: '#89e051'
- name: Java
value: 9669
color: '#b07219'
- name: CSS
value: 4200
color: '#563d7c'
- name: Dockerfile
value: 3937
color: '#384d54'
- name: Makefile
value: 2975
color: '#427819'
- name: Starlark
value: 602
contributions: 2;0;0;0;0;1;1;0;12;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
firstWeek: 2022-04-24Z
stars: 1248
license: Apache License 2.0
description: Exposure notification client application / Application client de notification d'exposition
latest_commit_date: '2022-06-17T18:28:34Z'
latest_commit_link: /cds-snc/covid-alert-app/commit/3f79e220cc4235365207d5146d2784f4622503ab
release_date: '2021-06-22T14:06:31Z'
release_link: https://github.com/cds-snc/covid-alert-app/releases
contributors_count: 85
contributors_link: https://github.com/cds-snc/covid-alert-app/graphs/contributors
repos:
- url: https://github.com/cds-snc/covid-alert-app
stars: 898
- url: https://github.com/cds-snc/covid-alert-server
stars: 299
- url: https://github.com/cds-snc/covid-alert-portal
stars: 44
- url: https://github.com/cds-snc/covid-alert-documentation
stars: 7
github_start_commit_data:
start_commit_link: /cds-snc/covid-alert-server/commit/ca905dab42a8a65b8d8432e271a0515426dffbdb
start_date: '2020-04-22T15:30:03Z'
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: Croatia (Stop COVID-19)
description: >-
In order to slow down the spread of COVID-19 among the population, the Government of the Republic of Croatia and the Ministry of Health have
developed an application that warns users that they have been in contact with a person who has subsequently been confirmed to be infected with
COVID-19.
homepage_url: https://www.koronavirus.hr/stop-covid-19-723/723
repo_url: https://github.com/Stop-COVID-19-Croatia/stopcovid19-android
project_org: https://github.com/Stop-COVID-19-Croatia
logo: croatia.svg
crunchbase: https://www.crunchbase.com/organization/ministry-of-health-croatia
crunchbase_data:
name: Ministry of Health Croatia
description: The Ministry of Health of the Republic of Croatia is in charge of health care and welfare.
num_employees_min: null
num_employees_max: null
homepage: https://zdravlje.gov.hr
city: Zagreb
region: Grad Zagreb
country: Croatia
twitter: https://twitter.com/VladaRH
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Health Care
github_data:
description: The official COVID-19 exposure notification app for Croatia
contributors_count: 1
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;0;0;0;0;0;0
stars: 24
languages:
- name: Java
value: 149686
color: '#b07219'
- name: Swift
value: 130918
color: '#ffac45'
- name: Objective-C
value: 1283
color: '#438eff'
- name: Ruby
value: 316
color: '#701516'
latest_commit_link: /Stop-COVID-19-Croatia/stopcovid19-android/commit/457b6829784a531ed81c4faa22c74ab1496b7797
latest_commit_date: '2022-03-03T16:40:29Z'
firstWeek: 2022-04-24Z
license: Unknown License
contributors_link: https://github.com/Stop-COVID-19-Croatia/stopcovid19-android/graphs/contributors
repos:
- url: https://github.com/Stop-COVID-19-Croatia/stopcovid19-android
stars: 16
- url: https://github.com/Stop-COVID-19-Croatia/stopcovid19-ios
stars: 6
- url: https://github.com/Stop-COVID-19-Croatia/stopcovid19-docs
stars: 2
github_start_commit_data:
start_commit_link: /Stop-COVID-19-Croatia/stopcovid19-docs/commit/652a4d83425369ac753269e27ab941f5b5c4ac71
start_date: '2020-07-27T14:14:49Z'
image_data:
fileName: croatia-stop-covid-19.svg
hash: bUEri2kgo8BXGjsrH3nEesgOYovWQSsL9nq6OQAiIhA=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-21T15:08:59.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
company_type: Non Profit
industries: []
image_data:
fileName: denmark-smittestop.svg
hash: a7Eo5WJNJZ8r8yFC4hdgK0Q0jTd/c69UHhkziDfjpcc=
best_practice_data:
badge: false
percentage: null
- item:
name: Ecuador (ASI)
description: >-
We take care of your well-being and that of your loved ones by tracking digital contacts. This contact record is done via Bluetooth, and does not
use Geolocation or have access to any personal data on your cell phone.
homepage_url: https://asiecuador.com/
logo: ecuador.svg
crunchbase: https://www.crunchbase.com/organization/ministry-of-telecommunications-and-the-information-society-ecuador
crunchbase_data:
name: Ministry of Telecommunications and the Information Society Ecuador
description: Ministry of Telecommunications and the Information Society Ecuador
num_employees_min: null
num_employees_max: null
homepage: https://www.telecomunicaciones.gob.ec/
city: Quito
region: Pichincha
country: Ecuador
twitter: https://twitter.com/Telecom_Ec
linkedin: https://www.linkedin.com/company/ministerio-de-telecomunicaciones-y-sociedad-de-la-informaci-n/
acquisitions: []
parents: []
stockExchange: null
company_type: ''
industries: []
image_data:
fileName: ecuador-asi.svg
hash: zwcOJ3g2uP8gVe1kiVUmF02MkAp2Llt/icBwBEW38ac=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-21T15:31:15.000Z
- item:
name: Estonia (HOIA)
description: >-
With the HOIA mobile app, you can quickly find out about possible close contact with a COVID-19 infected person, allowing you to take steps to
protect your own health and the health of others.
homepage_url: https://hoia.me/en/
logo: estonia.svg
crunchbase: https://www.crunchbase.com/organization/tehik
crunchbase_data:
name: Tehik
description: Tehik is an information and communication technology center of competence for health, social protection, and employment.
num_employees_min: 51
num_employees_max: 100
homepage: https://www.tehik.ee
city: Tallinn
region: Harjumaa
country: Estonia
twitter: null
linkedin: https://www.linkedin.com/company/tehik/
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Government
- Health Care
image_data:
fileName: estonia-hoia.svg
hash: iUf2sXW+Mhf1ePcOOooSILaIr844UAZaYa1bhEI//NE=
best_practice_data:
badge: false
percentage: null
- item:
name: Finland (Koronavilkku)
description: >-
Koronavilkku is a contact tracing app produced by the Finnish Institute for Health and Welfare (THL) to help you find out whether you may have
been exposed to coronavirus.
homepage_url: https://koronavilkku.fi/en/
repo_url: https://github.com/THLfi/koronavilkku-ios
logo: finland.svg
crunchbase: https://www.crunchbase.com/organization/finnish-institute-for-health-and-welfare
crunchbase_data:
name: Finnish Institute for Health and Welfare
description: THL studies and monitors – and develops measures to promote – the welfare and health of the population.
num_employees_min: 501
num_employees_max: 1000
homepage: https://thl.fi/en
city: Helsinki
region: Southern Finland
country: Finland
twitter: https://twitter.com/THLorg
linkedin: https://www.linkedin.com/company/finnish-institute-for-health-and-welfare/
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Government
- Health Care
github_data:
languages:
- name: Java
value: 465660
color: '#b07219'
- name: Kotlin
value: 443611
color: '#F18E33'
- name: Swift
value: 439067
color: '#ffac45'
- name: Shell
value: 1413
color: '#89e051'
contributions: 6;1;4;4;1;3;0;2;2;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
firstWeek: 2022-04-24Z
stars: 323
license: European Union Public License 1.2
description: null
latest_commit_date: '2022-06-17T08:00:25Z'
latest_commit_link: /THLfi/koronavilkku-ios/commit/b9bef04964aef7157da452b436a05e34a6d3d1dc
release_date: '2022-04-28T14:09:08Z'
release_link: https://github.com/THLfi/koronavilkku-ios/releases
contributors_count: 14
contributors_link: https://github.com/THLfi/koronavilkku-ios/graphs/contributors
repos:
- url: https://github.com/THLfi/koronavilkku-ios
stars: 76
- url: https://github.com/THLfi/koronavilkku-android
stars: 155
- url: https://github.com/THLfi/koronavilkku-backend
stars: 92
github_start_commit_data:
start_commit_link: /THLfi/koronavilkku-android/commit/8b38685d67c9cd05ac612aab9f17aee1978eb43f
start_date: '2020-08-21T09:55:35Z'
image_data:
fileName: finland-koronavilkku.svg
hash: PuLMCafZIxoU52X1EIu03Erc9Y7cYuhvI1T4DzhFrAM=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-12-23T06:17:19.000Z
- 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
company_type: Non Profit
industries:
- Association
- Education
- Government
- Health Care
- Medical
github_data:
description: The official COVID-19 exposure notification app for Germany.
contributors_count: 450
contributions: >-
186;250;276;268;228;132;67;89;83;80;122;132;116;116;103;123;136;169;117;145;173;137;133;102;145;134;118;137;108;86;198;95;111;143;94;55;72;68;74;89;100;85;64;84;105;73;138;107;95;88;32;19
stars: 10826
languages:
- name: Swift
value: 9639669
color: '#ffac45'
- name: Kotlin
value: 8752728
color: '#F18E33'
- name: JavaScript
value: 6332756
color: '#f1e05a'
- name: Java
value: 5323470
color: '#b07219'
- name: HTML
value: 1488354
color: '#e34c26'
- name: SCSS
value: 434233
- name: TypeScript
value: 384987
color: '#2b7489'
- name: Go
value: 140208
color: '#00ADD8'
- name: CSS
value: 47021
color: '#563d7c'
- name: FreeMarker
value: 46904
color: '#0050b2'
- name: Shell
value: 29020
color: '#89e051'
- name: Dockerfile
value: 24600
color: '#384d54'
- name: Ruby
value: 18333
color: '#701516'
- name: Python
value: 17019
color: '#3572A5'
- name: PHP
value: 15774
color: '#4F5D95'
- name: PLpgSQL
value: 10112
- name: TeX
value: 5995
color: '#3D6117'
- name: Less
value: 3849
- name: Batchfile
value: 1333
color: '#C1F12E'
- name: Objective-C
value: 1008
color: '#438eff'
- name: C
value: 308
color: '#555555'
latest_commit_link: /corona-warn-app/cwa-app-android/commit/6e5b5ceb524c1c16b084f6a21db011814822b498
latest_commit_date: '2023-04-19T12:46:35Z'
firstWeek: 2022-04-24Z
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: 2478
- url: https://github.com/corona-warn-app/cwa-documentation
stars: 3323
- url: https://github.com/corona-warn-app/cwa-server
stars: 1879
- url: https://github.com/corona-warn-app/cwa-app-ios
stars: 1719
- url: https://github.com/corona-warn-app/cwa-website
stars: 540
- url: https://github.com/corona-warn-app/cwa-verification-server
stars: 351
- url: https://github.com/corona-warn-app/cwa-wishlist
stars: 111
- url: https://github.com/corona-warn-app/cwa-verification-portal
stars: 95
- url: https://github.com/corona-warn-app/cwa-testresult-server
stars: 93
- url: https://github.com/corona-warn-app/cwa-verification-iam
stars: 53
- url: https://github.com/corona-warn-app/cwa-event-qr-code
stars: 37
- url: https://github.com/corona-warn-app/cwa-quicktest-onboarding
stars: 23
- url: https://github.com/corona-warn-app/cwa-backlog
stars: 20
- url: https://github.com/corona-warn-app/cwa-ppa-server
stars: 19
- url: https://github.com/corona-warn-app/cwa-quick-test-backend
stars: 15
- url: https://github.com/corona-warn-app/cwa-hotline
stars: 14
- url: https://github.com/corona-warn-app/cwa-quick-test-frontend
stars: 14
- url: https://github.com/corona-warn-app/cwa-event-landingpage
stars: 7
- url: https://github.com/corona-warn-app/cwa-log-upload
stars: 6
- url: https://github.com/corona-warn-app/cwa-dcc-server
stars: 6
- url: https://github.com/corona-warn-app/cwa-app-ccl
stars: 6
- url: https://github.com/corona-warn-app/dgca-businessrule-service
stars: 4
- url: https://github.com/corona-warn-app/cwa-map-public-frontend
stars: 2
- url: https://github.com/corona-warn-app/cwa-map-backend
stars: 2
- url: https://github.com/corona-warn-app/cwa-registrierung
stars: 2
- url: https://github.com/corona-warn-app/cwa-map-operators-frontend
stars: 1
- url: https://github.com/corona-warn-app/dgc-certlogic-ios
stars: 1
- url: https://github.com/corona-warn-app/cwa-kotlin-jfn
stars: 1
- url: https://github.com/corona-warn-app/json-functions-swift
stars: 1
- url: https://github.com/corona-warn-app/dcc-rule-translation
stars: 1
- url: https://github.com/corona-warn-app/cwa-icao-transliteration
stars: 1
- url: https://github.com/corona-warn-app/.github
stars: 1
- url: https://github.com/corona-warn-app/base45-swift
stars: 0
- url: https://github.com/corona-warn-app/dgc-certlogic-android
stars: 0
- url: https://github.com/corona-warn-app/JSONSchema.swift
stars: 0
- url: https://github.com/corona-warn-app/ASN1Decoder
stars: 0
- url: https://github.com/corona-warn-app/Swift-JWT
stars: 0
- url: https://github.com/corona-warn-app/BlueRSA
stars: 0
- url: https://github.com/corona-warn-app/cwa-parent
stars: 0
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: 2023-04-21T13:21:37.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/hm-government-of-gibraltar
crunchbase_data:
name: HM Government of Gibraltar
description: HM Government of Gibraltar offers information relating to Government Ministries, Departments and Services.
num_employees_min: null
num_employees_max: null
homepage: https://www.gibraltar.gov.gi
city: Gibraltar
region: Gibraltar
country: Gibraltar
twitter: https://www.twitter.com/https://twitter.com/GibraltarGov
linkedin: https://www.linkedin.com/company/government-of-gibraltar/
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries:
- Government
- Service Industry
image_data:
fileName: gibraltar-beat-covid.svg
hash: 0UVC8KHxjxiQ2XjnoKGJG+t+ZBWZSKxlDonR3BVltT8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-19T15:18:29.000Z
- item:
name: Guam (Guam Covid Alert)
description: Download the Department of Public Health and Social Services GUAM COVID ALERT app to help protect your community while protecting your privacy.
homepage_url: https://guamcovidalert.guam.gov
logo: guam.svg
crunchbase: https://www.crunchbase.com/organization/guam-department-of-public-health-and-social-services
crunchbase_data:
name: Guam Department of Public Health and Social Services
description: The Guam Department of Public Health and Social Services is an agency of the government of the United States territory of Guam.
num_employees_min: null
num_employees_max: null
homepage: https://dphss.guam.gov/
city: Hagåtña
region: NA - Guam
country: Guam
twitter: https://twitter.com/guamdphss
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: ''
industries:
- Health Care
image_data:
fileName: guam-guam-covid-alert.svg
hash: SuvEfPIiufJJFIrR7cJ0B+OLbq5tcjslmaaBqBVsU84=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2015-11-05T05:52:58.000Z
- item:
name: Iceland (Rakning C-19)
description: This app helps to identify individual travels and traces with others' travels when an infection occurs or is suspected of transmission.
homepage_url: https://www.covid.is/app/is
logo: iceland.svg
crunchbase: https://www.crunchbase.com/organization/ministry-of-health-iceland
crunchbase_data:
name: Ministry of Health Iceland
description: Ministry of Health Iceland
num_employees_min: null
num_employees_max: null
homepage: https://www.government.is/ministries/ministry-of-health/
city: Reykjavík
region: Gullbringusysla
country: Iceland
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: Non Profit
industries: []
image_data:
fileName: iceland-rakning-c-19.svg
hash: OytmW6cYAYVyllT+7iNgrUtpkK6dpm3yAl+MwQnyvxI=
best_practice_data:
badge: false
percentage: null
- 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://www.covidtracker.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: Health Service Executive provides Ireland's people with safe, high-quality health and personal social services.
num_employees_min: 10001
num_employees_max: 1000000
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
company_type: For Profit
industries:
- Health Care
github_data:
description: Health Service Executive
contributors_count: 20
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;0;0;0;0;0;0
stars: 673
languages:
- name: TypeScript
value: 673602
color: '#2b7489'
- name: HCL
value: 418971
- name: JavaScript
value: 405523
color: '#f1e05a'
- name: Swift
value: 190094
color: '#ffac45'
- name: Java
value: 173832
color: '#b07219'
- name: Kotlin
value: 136825
color: '#F18E33'
- name: Objective-C
value: 17344
color: '#438eff'
- name: Shell
value: 15837
color: '#89e051'
- name: Ruby
value: 14909
color: '#701516'
- name: Makefile
value: 13494
color: '#427819'
- name: Smarty
value: 5685
- name: Starlark
value: 4422
- name: Dockerfile
value: 2180
color: '#384d54'
- name: C
value: 244
color: '#555555'
latest_commit_link: /HSEIreland/covid-tracker-app/commit/5684a05a14de649fc04ecbba2e349a75189e4645
latest_commit_date: '2021-07-16T06:55:59Z'
firstWeek: 2022-04-24Z
license: MIT License
contributors_link: https://github.com/HSEIreland/covid-tracker-app/graphs/contributors
repos:
- url: https://github.com/HSEIreland/covid-tracker-app
stars: 476
- url: https://github.com/HSEIreland/covid-tracker-backend-api
stars: 76
- url: https://github.com/HSEIreland/covid-tracker-infra
stars: 48
- url: https://github.com/HSEIreland/covidtracker-documentation
stars: 29
- url: https://github.com/HSEIreland/react-native-exposure-notification-service
stars: 19
- url: https://github.com/HSEIreland/covid-tracker-lambdas
stars: 11
- url: https://github.com/HSEIreland/covid-tracker-push-api
stars: 6
- url: https://github.com/HSEIreland/react-native-exposure-notification-service-1
stars: 2
- url: https://github.com/HSEIreland/covid-green-infra
stars: 1
- url: https://github.com/HSEIreland/covid-green-backend-api
stars: 1