-
Notifications
You must be signed in to change notification settings - Fork 4
/
processed_landscape.yml
15810 lines (15810 loc) · 613 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: Mapping
subcategories:
- subcategory:
name: Map Data
items:
- item:
name: NaturalEarth
homepage_url: https://www.naturalearthdata.com/
repo_url: https://github.com/nvkelso/natural-earth-vector
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/earth-data
crunchbase_data:
name: Earth Data
description: Earth Data provides research, consulting, and data management services to mining, and oil and gas industries in Australia.
num_employees_min: 101
num_employees_max: 250
homepage: http://earthdata.com.au/
city: Thornton
region: Queensland
country: Australia
twitter: null
linkedin: https://www.linkedin.com/company/earth-data-pty-ltd
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Consulting
- Oil and Gas
github_data:
languages:
- name: HTML
value: 12579156
color: '#e34c26'
- name: Makefile
value: 296655
color: '#427819'
- name: Python
value: 117998
color: '#3572A5'
- name: R
value: 51201
color: '#198CE7'
- name: Shell
value: 23067
color: '#89e051'
- name: Rich Text Format
value: 6569
- name: Dockerfile
value: 293
color: '#384d54'
contributions: 5;7;8;5;3;0;3;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
firstWeek: 2022-04-24Z
stars: 1523
license: Other
description: A global, public domain map dataset available at three scales and featuring tightly integrated vector and raster data.
latest_commit_date: '2022-06-02T07:25:00Z'
latest_commit_link: /nvkelso/natural-earth-vector/commit/ca96624a56bd078437bca8184e78163e5039ad19
release_date: '2022-05-13T23:24:34Z'
release_link: https://github.com/nvkelso/natural-earth-vector/releases
contributors_count: 12
contributors_link: https://github.com/nvkelso/natural-earth-vector/graphs/contributors
repos:
- url: https://github.com/nvkelso/natural-earth-vector
stars: 1523
github_start_commit_data:
start_commit_link: /nvkelso/natural-earth-vector/commit/4c73fcc32388c5dddc7859bcc0e77abd296162e1
start_date: '2012-01-22T13:02:30Z'
image_data:
fileName: natural-earth.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: OpenStreetMaps
homepage_url: https://www.openstreetmap.org/about
repo_url: https://github.com/openstreetmap/operations
logo: urbancomputingfoundation.svg
twitter: https://twitter.com/openstreetmap
crunchbase: https://www.crunchbase.com/organization/openstreetmap
crunchbase_data:
name: OpenStreetMap
description: OpenStreetMap is an editable map of the world that is free to use under an open license.
num_employees_min: 1
num_employees_max: 10
homepage: http://www.openstreetmap.org/
city: Denver
region: Colorado
country: United States
twitter: https://twitter.com/openstreetmap?lang=en
linkedin: https://www.linkedin.com/company/361061
acquisitions: []
parents: []
funding: 25000
stockExchange: null
company_type: For Profit
industries:
- Communities
- Geospatial
- Mapping Services
- Non Profit
- Software
kind: funding
github_data:
languages: []
contributions: 0;0;0;1;0;0;0;0;0;0;0;0;0;0;0;3;0;0;0;0;0;0;0;0;0;0;0;0;9;1;0;1;1;3;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 89
license: Unknown License
description: OSMF Operations Working Group issue tracking
latest_commit_date: '2022-12-09T07:18:40Z'
latest_commit_link: /openstreetmap/operations/commit/a2c652396ecd7786902a215ae04fc39753b50366
contributors_count: 6
contributors_link: https://github.com/openstreetmap/operations/graphs/contributors
repos:
- url: https://github.com/openstreetmap/operations
stars: 89
github_start_commit_data:
start_commit_link: /openstreetmap/operations/commit/644935b4733d5b152d22b4fcd7d713e88c710f0f
start_date: '2014-12-16T08:56:16Z'
image_data:
fileName: open-street-maps.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-01T17:57:00.000Z
- subcategory:
name: Map Services
items:
- item:
name: GeoServer
homepage_url: https://geoserver.org
repo_url: https://github.com/geoserver/geoserver
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/geoserver
crunchbase_data:
name: GeoServer
description: GeoServer is a Java-based software server that allows users to view and edit geospatial data.
num_employees_min: null
num_employees_max: null
homepage: http://geoserver.org/
city: New York
region: New York
country: United States
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Software
github_data:
languages:
- name: Java
value: 44315925
color: '#b07219'
- name: JavaScript
value: 1135807
color: '#f1e05a'
- name: Scheme
value: 1035374
color: '#1e4aec'
- name: HTML
value: 684378
color: '#e34c26'
- name: FreeMarker
value: 235065
color: '#0050b2'
- name: XSLT
value: 156026
color: '#EB8CEB'
- name: CSS
value: 107478
color: '#563d7c'
- name: NSIS
value: 44051
- name: Shell
value: 34411
color: '#89e051'
- name: Python
value: 18317
color: '#3572A5'
- name: Batchfile
value: 12921
color: '#C1F12E'
- name: AMPL
value: 8670
color: '#E6EFBB'
- name: Makefile
value: 6537
color: '#427819'
- name: Dockerfile
value: 2902
color: '#384d54'
- name: Fluent
value: 188
contributions: 15;11;10;4;9;7;18;17;9;16;7;20;12;5;6;10;11;3;15;7;11;6;17;13;14;19;16;5;7;9;10;13;9;11;5;8;6;7;11;9;13;10;10;12;14;10;13;9;10;7;6;5
firstWeek: 2022-04-24Z
stars: 3134
license: Other
description: Official GeoServer repository
latest_commit_date: '2023-04-17T14:55:57Z'
latest_commit_link: /geoserver/geoserver/commit/e1507fa8ad5d6940e4de7c6f04b7aecf645e0ae6
release_date: '2023-04-05T04:44:38Z'
release_link: https://github.com/geoserver/geoserver/releases
contributors_count: 441
contributors_link: https://github.com/geoserver/geoserver/graphs/contributors
repos:
- url: https://github.com/geoserver/geoserver
stars: 3134
github_start_commit_data:
start_commit_link: /geoserver/geoserver/commit/44bacafcf1352bfe0b1836262df686fd58036585
start_date: '2011-06-18T17:08:19Z'
image_data:
fileName: geo-server.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: Hyperion Map3
homepage_url: https://www.hyn.space/
repo_url: https://github.com/hyperion-hyn/map3
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/hyperion-one-map
crunchbase_data:
name: Hyperion One Map
description: Hyperion is a decentralized map platform
num_employees_min: null
num_employees_max: null
homepage: https://www.hyn.space/
city: Singapore
region: Central Region
country: Singapore
twitter: https://twitter.com/hyperionhyn
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: JavaScript
value: 21149
color: '#f1e05a'
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
firstWeek: 2022-04-24Z
stars: 38
license: Apache License 2.0
description: >-
Map3 is a decentralized map network which is impartial, secure and extremely robust, so that it is impractical to shut down just like the
BitTorrent and the Bitcoin network. Map3 is free from control, free to participate, free base map.
latest_commit_date: '2020-08-24T07:45:33Z'
latest_commit_link: /hyperion-hyn/map3/commit/a5473ce452597e6a9150cd1430d57c4a5f7a552d
contributors_count: 6
contributors_link: https://github.com/hyperion-hyn/map3/graphs/contributors
repos:
- url: https://github.com/hyperion-hyn/map3
stars: 38
github_start_commit_data:
start_commit_link: /hyperion-hyn/map3/commit/a73117cdf0a5eb62dd72caee362b7c64a3731fcd
start_date: '2019-07-31T06:34:55Z'
image_data:
fileName: hyperion-map3.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2021-08-07T10:28:53.000Z
- item:
name: MapServer Suite
homepage_url: https://mapserver.org/
repo_url: https://github.com/MapServer/MapServer-documentation
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/mapserver
crunchbase_data:
name: MapServer
description: MapServer is an Open Source platform for publishing spatial data and interactive mapping applications to the web.
num_employees_min: null
num_employees_max: null
homepage: https://mapserver.org/
city: Beaverton
region: Oregon
country: United States
twitter: https://twitter.com/mapserver_osgeo
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: SourcePawn
value: 51200
color: '#5c7611'
- name: Python
value: 36173
color: '#3572A5'
- name: HTML
value: 18455
color: '#e34c26'
- name: CSS
value: 12278
color: '#563d7c'
- name: Makefile
value: 9716
color: '#427819'
- name: Shell
value: 9458
color: '#89e051'
- name: Vim Script
value: 6822
- name: JavaScript
value: 5394
color: '#f1e05a'
- name: Batchfile
value: 4726
color: '#C1F12E'
contributions: 1;3;1;2;2;0;1;0;1;2;0;0;0;1;0;1;15;3;1;2;4;1;0;2;0;1;1;0;1;0;0;0;2;0;0;0;0;1;2;1;10;5;2;0;0;0;4;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 32
license: Other
description: Source repository for the MapServer documentation, for the live website. Please submit pull requests to the 'main' branch.
latest_commit_date: '2023-03-10T12:13:49Z'
latest_commit_link: /MapServer/MapServer-documentation/commit/7d23064daf3cac9647597daabe34d3521b2bcb08
contributors_count: 97
contributors_link: https://github.com/MapServer/MapServer-documentation/graphs/contributors
repos:
- url: https://github.com/MapServer/MapServer-documentation
stars: 32
github_start_commit_data:
start_commit_link: /mapserver/docs/commit/e24073c085aea2f209e64be910f2c6400212f759
start_date: '2008-03-06T18:43:27Z'
image_data:
fileName: map-server-suite.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2022-08-20T13:11:52.000Z
- item:
name: NextZen Vector Tile Service
homepage_url: https://www.nextzen.org/
repo_url: https://github.com/tilezen/vector-datasource
logo: urbancomputingfoundation.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/mapzen
crunchbase_data:
name: Mapzen
description: Mapzen is an open source mapping lab building and supporting open data and software to promote a healthy mapping ecosystem.
num_employees_min: 11
num_employees_max: 50
homepage: https://mapzen.com/
city: New York
region: New York
country: United States
twitter: https://www.twitter.com/mapzen
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Navigation
- Open Source
github_data:
languages:
- name: Python
value: 3272854
color: '#3572A5'
- name: PLpgSQL
value: 62778
- name: HTML
value: 38744
color: '#e34c26'
- name: Jinja
value: 34235
- name: Lua
value: 32483
color: '#000080'
- name: Shell
value: 17086
color: '#89e051'
- name: Dockerfile
value: 616
color: '#384d54'
- name: XSLT
value: 339
color: '#EB8CEB'
contributions: 1;3;0;2;3;0;0;1;1;1;1;1;1;1;2;3;0;0;0;0;1;0;1;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;5;9;0;0;0;0;0
firstWeek: 2022-04-24Z
stars: 479
license: Other
description: Tilezen vector tile service - OpenStreetMap data in several formats
latest_commit_date: '2023-03-10T18:08:41Z'
latest_commit_link: /tilezen/vector-datasource/commit/b5383ba51f69a54a96dff4ed22d2c72650b77d5b
release_date: '2023-03-10T18:12:18Z'
release_link: https://github.com/tilezen/vector-datasource/releases
contributors_count: 52
contributors_link: https://github.com/tilezen/vector-datasource/graphs/contributors
repos:
- url: https://github.com/tilezen/vector-datasource
stars: 479
github_start_commit_data:
start_commit_link: /tilezen/vector-datasource/commit/fc096332bd3400636381010dd62d6e3d2a40f755
start_date: '2013-10-09T15:56:29Z'
image_data:
fileName: next-zen-vector-tile-service.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: Pelias Search
homepage_url: https://www.mapzen.com/products/search/geocoding/
repo_url: https://github.com/pelias/pelias
logo: urbancomputingfoundation.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/mapzen
crunchbase_data:
name: Mapzen
description: Mapzen is an open source mapping lab building and supporting open data and software to promote a healthy mapping ecosystem.
num_employees_min: 11
num_employees_max: 50
homepage: https://mapzen.com/
city: New York
region: New York
country: United States
twitter: https://www.twitter.com/mapzen
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Navigation
- Open Source
github_data:
languages:
- name: Twig
value: 5662
- name: CSS
value: 4059
color: '#563d7c'
- name: JavaScript
value: 1675
color: '#f1e05a'
- name: Dockerfile
value: 370
color: '#384d54'
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
firstWeek: 2022-04-24Z
stars: 2951
license: MIT License
description: Pelias is a modular open-source geocoder using Elasticsearch.
latest_commit_date: '2021-09-23T20:15:20Z'
latest_commit_link: /pelias/pelias/commit/3e139a5f576a09ce64d8a263d8990bf82147a0ff
contributors_count: 26
contributors_link: https://github.com/pelias/pelias/graphs/contributors
repos:
- url: https://github.com/pelias/pelias
stars: 2951
github_start_commit_data:
start_commit_link: /pelias/pelias/commit/bfc88121c4e72e611737fa9a1846747f42852785
start_date: '2014-10-06T13:40:34Z'
image_data:
fileName: pelias-search.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: Valhalla
homepage_url: https://www.mapzen.com/products/mobility/turn-by-turn/
repo_url: https://github.com/valhalla/valhalla
logo: urbancomputingfoundation.svg
twitter: https://twitter.com/valhallarouting
crunchbase: https://www.crunchbase.com/organization/mapzen
crunchbase_data:
name: Mapzen
description: Mapzen is an open source mapping lab building and supporting open data and software to promote a healthy mapping ecosystem.
num_employees_min: 11
num_employees_max: 50
homepage: https://mapzen.com/
city: New York
region: New York
country: United States
twitter: https://www.twitter.com/mapzen
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Navigation
- Open Source
github_data:
languages:
- name: C++
value: 8348613
color: '#f34b7d'
- name: CMake
value: 142332
- name: Python
value: 107241
color: '#3572A5'
- name: Shell
value: 100441
color: '#89e051'
- name: Lua
value: 89156
color: '#000080'
- name: Dockerfile
value: 3280
color: '#384d54'
- name: C
value: 1271
color: '#555555'
- name: Emacs Lisp
value: 96
color: '#c065db'
contributions: 0;1;3;1;3;1;0;3;7;1;2;3;0;0;1;2;1;7;0;0;5;1;4;3;1;8;6;4;1;1;2;7;3;2;2;2;8;5;7;5;4;4;4;7;1;7;3;2;6;4;1;4
firstWeek: 2022-04-24Z
stars: 2464
license: Other
description: Open Source Routing Engine for OpenStreetMap
latest_commit_date: '2023-04-13T19:55:55Z'
latest_commit_link: /valhalla/valhalla/commit/6e0db89cefc4e8d1b43f9a3ccb5874a99c166ee3
release_date: '2023-01-03T16:26:36Z'
release_link: https://github.com/valhalla/valhalla/releases
contributors_count: 187
contributors_link: https://github.com/valhalla/valhalla/graphs/contributors
repos:
- url: https://github.com/valhalla/valhalla
stars: 2464
github_start_commit_data:
start_commit_link: /valhalla/valhalla/commit/2769f0706c481658029afbbdbfb4a1c56d3d5287
start_date: '2014-11-18T20:08:25Z'
image_data:
fileName: valhalla.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2020-12-20T15:10:02.000Z
- subcategory:
name: Map Rendering
items:
- item:
name: Cessium
homepage_url: https://cesium.com/platform/cesiumjs
repo_url: https://github.com/CesiumGS/cesium
logo: urbancomputingfoundation.svg
twitter: https://twitter.com/CesiumJS
crunchbase: https://www.crunchbase.com/organization/cesium
crunchbase_data:
name: Cesium
description: Cesium is an end-to-end platform for tiling, visualizing, and analyzing 3D geospatial data
num_employees_min: 11
num_employees_max: 50
homepage: https://cesium.com/
city: Philadelphia
region: Pennsylvania
country: United States
twitter: https://twitter.com/cesiumjs
linkedin: https://www.linkedin.com/showcase/cesiumjs
acquisitions: []
parents: []
funding: 5000000
stockExchange: null
company_type: For Profit
industries:
- 3D Technology
- Analytics
- Geospatial
- Software
kind: funding
github_data:
languages:
- name: JavaScript
value: 21528122
color: '#f1e05a'
- name: HTML
value: 1815181
color: '#e34c26'
- name: GLSL
value: 468035
- name: CSS
value: 54735
color: '#563d7c'
- name: TypeScript
value: 11035
color: '#2b7489'
- name: Python
value: 4899
color: '#3572A5'
- name: Handlebars
value: 2480
- name: Shell
value: 1971
color: '#89e051'
contributions: >-
72;64;71;48;63;68;122;66;34;50;63;147;101;119;50;148;62;99;62;83;64;36;38;32;37;24;11;20;25;16;28;1;41;50;46;14;60;19;28;22;19;47;33;31;36;32;21;27;38;38;19;5
firstWeek: 2022-04-24Z
stars: 10221
license: Apache License 2.0
description: 'An open-source JavaScript library for world-class 3D globes and maps :earth_americas:'
latest_commit_date: '2023-04-19T14:53:13Z'
latest_commit_link: /CesiumGS/cesium/commit/7a337e280066b1e4a680e3d3493ad87986230183
release_date: '2023-04-03T20:45:23Z'
release_link: https://github.com/CesiumGS/cesium/releases
contributors_count: 374
contributors_link: https://github.com/CesiumGS/cesium/graphs/contributors
repos:
- url: https://github.com/CesiumGS/cesium
stars: 10221
github_start_commit_data:
start_commit_link: /CesiumGS/cesium/commit/dbd25c820cdd3c8e663aebcace5ead28bbe0dc58
start_date: '2012-03-02T22:28:20Z'
image_data:
fileName: cessium.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-18T19:23:06.000Z
- item:
name: harp.gl
homepage_url: https://www.harp.gl/
repo_url: https://github.com/heremaps/harp.gl
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/harp-gl
crunchbase_data:
name: harp.gl
description: 3d web map rendering engine
num_employees_min: null
num_employees_max: null
homepage: https://www.harp.gl/
city: Amsterdam
region: Noord-Holland
country: The Netherlands
twitter: null
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: TypeScript
value: 5537409
color: '#2b7489'
- name: JavaScript
value: 104989
color: '#f1e05a'
- name: HTML
value: 29393
color: '#e34c26'
- name: Shell
value: 6982
color: '#89e051'
- name: CSS
value: 5459
color: '#563d7c'
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
firstWeek: 2022-04-24Z
stars: 1251
license: Apache License 2.0
description: 3D web map rendering engine written in TypeScript using three.js
latest_commit_date: '2022-02-17T07:56:55Z'
latest_commit_link: /heremaps/harp.gl/commit/d0ca2a26f5cf1eec6b9549bdaa192735c5bee21d
release_date: '2022-01-17T11:26:26Z'
release_link: https://github.com/heremaps/harp.gl/releases
contributors_count: 55
contributors_link: https://github.com/heremaps/harp.gl/graphs/contributors
repos:
- url: https://github.com/heremaps/harp.gl
stars: 1251
github_start_commit_data:
start_commit_link: /heremaps/harp.gl/commit/021b9dc927fb2314b2fe571ce53cc1b52b3e1348
start_date: '2019-03-11T15:31:21Z'
image_data:
fileName: harp-gl.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: Leaflet
homepage_url: https://leafletjs.com/
repo_url: https://github.com/Leaflet/Leaflet
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/leaflet-5700
crunchbase_data:
name: Leaflet JS
description: Leaflet is the leading open-source JavaScript library for mobile-friendly interactive maps.
num_employees_min: null
num_employees_max: null
homepage: https://leafletjs.com/
city: San Francisco
region: California
country: United States
twitter: https://twitter.com/leafletjs
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: JavaScript
value: 854675
color: '#f1e05a'
- name: HTML
value: 143144
color: '#e34c26'
- name: Handlebars
value: 8760
- name: CSS
value: 150
color: '#563d7c'
- name: Shell
value: 58
color: '#89e051'
contributions: 14;10;7;9;8;3;7;2;8;1;3;4;6;3;5;1;3;2;7;1;3;0;28;27;21;16;18;9;1;9;9;5;11;5;5;33;11;1;6;4;6;10;10;8;6;3;5;2;3;1;1;10
firstWeek: 2022-04-24Z
stars: 37328
license: BSD 2-Clause "Simplified" License
description: 🍃 JavaScript library for mobile-friendly interactive maps 🇺🇦
latest_commit_date: '2023-04-18T11:19:59Z'
latest_commit_link: /Leaflet/Leaflet/commit/26f7df877bb06da1e1b1e890715eb06703e3710e
release_date: '2022-11-18T17:54:17Z'
release_link: https://github.com/Leaflet/Leaflet/releases
contributors_count: 927
contributors_link: https://github.com/Leaflet/Leaflet/graphs/contributors
repos:
- url: https://github.com/Leaflet/Leaflet
stars: 37328
github_start_commit_data:
start_commit_link: /Leaflet/Leaflet/commit/eb5b7d706b9f439863172c522add77a0193dbda8
start_date: '2010-09-01T14:55:30Z'
image_data:
fileName: leaflet.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-03-04T12:57:39.000Z
- item:
name: mapbox-gl-js
homepage_url: https://docs.mapbox.com/mapbox-gl-js/api/
repo_url: https://github.com/mapbox/mapbox-gl-js
logo: urbancomputingfoundation.svg
crunchbase: https://www.crunchbase.com/organization/mapbox
crunchbase_data:
name: Mapbox
description: Mapbox is a location data platform for mobile and web applications powering navigation for people, packages, and vehicles everywhere.
num_employees_min: 501
num_employees_max: 1000
homepage: http://www.mapbox.com
city: Washington
region: District of Columbia
country: United States
twitter: http://twitter.com/Mapbox
linkedin: https://www.linkedin.com/company/mapbox
acquisitions:
- date: '2016-08-18'
acquiree: Humanco
- date: '2017-11-03'
acquiree: MapData
parents: []
funding: 334175000
stockExchange: null
company_type: For Profit
industries:
- Automotive
- Business Intelligence
- Cloud Computing
- Data Visualization
- Enterprise Software
- Location Based Services
- Mapping Services
- Open Source
- SaaS
kind: funding
github_data:
languages:
- name: JavaScript
value: 4862086
color: '#f1e05a'
- name: HTML
value: 317909
color: '#e34c26'
- name: GLSL
value: 141994
- name: CSS
value: 22783
color: '#563d7c'
- name: EJS
value: 7561
- name: Shell
value: 3863
color: '#89e051'
contributions: 31;15;13;13;6;7;4;6;16;3;4;8;4;6;8;1;6;7;7;11;7;10;9;9;7;3;25;6;8;10;7;10;5;14;13;4;1;7;6;10;7;5;4;0;8;6;6;3;3;5;3;4
firstWeek: 2022-04-24Z
stars: 9787
license: Other
description: Interactive, thoroughly customizable maps in the browser, powered by vector tiles and WebGL
latest_commit_date: '2023-04-19T10:50:24Z'
latest_commit_link: /mapbox/mapbox-gl-js/commit/9f1ae02a79413c2446fdfc2892c70700609010f0
release_date: '2023-04-14T09:27:48Z'
release_link: https://github.com/mapbox/mapbox-gl-js/releases
contributors_count: 390
contributors_link: https://github.com/mapbox/mapbox-gl-js/graphs/contributors
repos:
- url: https://github.com/mapbox/mapbox-gl-js
stars: 9787
github_start_commit_data:
start_commit_link: /mapbox/mapbox-gl-js/commit/9bf4c9d49496603a910ee148b7096d253fbf2355
start_date: '2013-06-26T23:20:45Z'
image_data:
fileName: mapbox-gl-js.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-18T20:54:23.000Z
- item:
name: OpenLayers
homepage_url: https://www.osgeo.org/projects/openlayers/
repo_url: https://github.com/openlayers/openlayers
logo: openlayers.svg
crunchbase: https://www.crunchbase.com/organization/openlayers
crunchbase_data:
name: OpenLayers
description: OpenLayers is an OSGeo project. OpenLayers makes it easy to put a dynamic map in any web page.
num_employees_min: null
num_employees_max: null
homepage: https://www.osgeo.org/projects/openlayers/
city: Beaverton
region: Oregon
country: United States
twitter: https://twitter.com/openlayers
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries: []
github_data:
languages:
- name: JavaScript
value: 5603376
color: '#f1e05a'
- name: CSS
value: 30069
color: '#563d7c'
- name: Handlebars
value: 15108
- name: Shell
value: 5826
color: '#89e051'
- name: HTML
value: 2519
color: '#e34c26'
contributions: >-
17;50;28;25;33;22;14;31;17;17;12;24;59;29;80;63;70;63;48;25;22;15;12;20;21;31;16;6;36;19;35;18;19;27;15;22;9;5;8;22;13;12;11;24;15;13;20;27;32;23;30;18
firstWeek: 2022-04-24Z
stars: 9952
license: BSD 2-Clause "Simplified" License
description: OpenLayers
latest_commit_date: '2023-04-18T09:48:58Z'
latest_commit_link: /openlayers/openlayers/commit/4fae13ebe9b87a07bc3338d425bd4029e08f9ccc
release_date: '2023-03-04T23:48:34Z'
release_link: https://github.com/openlayers/openlayers/releases
contributors_count: 416
contributors_link: https://github.com/openlayers/openlayers/graphs/contributors
repos:
- url: https://github.com/openlayers/openlayers
stars: 9952
github_start_commit_data:
start_commit_link: /openlayers/openlayers/commit/6810d70bddeccb486bbe88b92ee634eb16240e98
start_date: '2006-05-12T19:35:22Z'
image_data:
fileName: open-layers.svg
hash: luJqaY9DavN0xS+eqU+k8oyNhYIt1vr8o140rMykmu8=
best_practice_data:
badge: false
percentage: null
twitter_data:
latest_tweet_date: 2023-04-12T17:19:19.000Z
- item:
name: Tangram
homepage_url: https://www.mapzen.com/products/tangram/
repo_url: https://github.com/tangrams/tangram
logo: urbancomputingfoundation.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/mapzen
crunchbase_data:
name: Mapzen
description: Mapzen is an open source mapping lab building and supporting open data and software to promote a healthy mapping ecosystem.
num_employees_min: 11
num_employees_max: 50
homepage: https://mapzen.com/
city: New York
region: New York
country: United States
twitter: https://www.twitter.com/mapzen
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Navigation
- Open Source
github_data:
languages:
- name: JavaScript
value: 862846
color: '#f1e05a'
- name: GLSL
value: 42329
- name: HTML
value: 2218
color: '#e34c26'
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
firstWeek: 2022-04-24Z
stars: 2119
license: MIT License
description: WebGL map rendering engine for creative cartography
latest_commit_date: '2021-01-31T21:54:06Z'
latest_commit_link: /tangrams/tangram/commit/d91cbb01d4a092f5671e6682d0f1d4701b7d96f2
release_date: '2020-12-13T04:16:07Z'
release_link: https://github.com/tangrams/tangram/releases
contributors_count: 29
contributors_link: https://github.com/tangrams/tangram/graphs/contributors
repos:
- url: https://github.com/tangrams/tangram
stars: 2119
github_start_commit_data:
start_commit_link: /tangrams/tangram/commit/dc706b1c8dab198de51521860d7feec379f6a3d7
start_date: '2013-09-30T01:59:45Z'
image_data:
fileName: tangram.svg
hash: 2Jvyt1WiQoKGp7yvbjD7wFMCnqov2DYxvyh6zJR9UcU=
best_practice_data:
badge: false
percentage: null
- item:
name: Tangram ES
homepage_url: https://github.com/tangrams/tangram-es
repo_url: https://github.com/tangrams/tangram-es
logo: urbancomputingfoundation.svg
twitter: null
crunchbase: https://www.crunchbase.com/organization/mapzen
crunchbase_data:
name: Mapzen
description: Mapzen is an open source mapping lab building and supporting open data and software to promote a healthy mapping ecosystem.
num_employees_min: 11
num_employees_max: 50
homepage: https://mapzen.com/
city: New York
region: New York
country: United States
twitter: https://www.twitter.com/mapzen
linkedin: null
acquisitions: []
parents: []
stockExchange: null
company_type: For Profit
industries:
- Enterprise Software
- Navigation
- Open Source
github_data:
languages:
- name: C++
value: 6088170