-
Notifications
You must be signed in to change notification settings - Fork 7
/
talks.json
1849 lines (1849 loc) · 77.7 KB
/
talks.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"talks": [
{
"code": "WTH9FS",
"id": 1073127,
"title": "Opening Session",
"abstract": "We welcome the OpenStreetMap community in Nairobi but also online to celebrate the international State of the Map conference. This session will provide also some formal instructions and helpful information. For example you will learn how the QA (question and answer) sessions are run. And what we will do on Friday and Saturday evening.",
"speakers": [
"YNFKER"
],
"track": 4517,
"start": "2024-09-06T10:00:00+03:00",
"end": "2024-09-06T10:20:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T22:50:37.805079+00:00",
"state": null,
"do_not_record": false
},
{
"code": "EWNBAV",
"id": 1073128,
"title": "UN Maps - Supporting Peace with Open Data",
"abstract": "UN Maps is an initiative from the Department of Operational Support at the United Nations which aims not only to enrich topographic and operational data in UN mission areas but also to provide peacekeeping and humanitarian actors with topographic maps, operational geo-information, search and navigation tools, and imagery and street-level base maps. UN Maps is built on both UN internal authoritative geospatial information and open data, especially OpenStreetMap. UN Maps has also built a thriving community, called UN Mappers, around the collection and validation of open geospatial data with contributors from local communities, academia and UN staff in the field.",
"speakers": [
"CZLFVR"
],
"track": 4516,
"start": "2024-09-06T10:30:00+03:00",
"end": "2024-09-06T10:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.682362+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073131,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T08:00:00Z",
"end": "2024-09-06T11:30:00+03:00",
"room": 3178
},
{
"id": 1073130,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T08:00:00Z",
"end": "2024-09-06T11:30:00+03:00",
"room": 3177
},
{
"id": 1073129,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T08:00:00Z",
"end": "2024-09-06T11:30:00+03:00",
"room": 3176
},
{
"id": 1073132,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T08:00:00Z",
"end": "2024-09-06T11:30:00+03:00",
"room": 3179
},
{
"code": "A3JTVT",
"id": 1073134,
"title": "The OSM Spectrum",
"abstract": "OpenStreetMap (OSM) is a collaborative mapping platform with provides open and easy access to its users. It has diverse usability including the general public to governmental and non-governmental organizations. This abstract presents the usage of OSM in general and in the context of Nepal. OSM is used by the local community, the government sector and NGOs, tourism, classrooms, and various projects contributing to the development and gender equality making it a versatile data source. OSM gives a sense of empowerment and responsibility to individuals and contributes to fostering resilience and sustainable development.",
"speakers": [
"TER3GY",
"3PM7NH"
],
"track": 4516,
"start": "2024-09-06T11:30:00+03:00",
"end": "2024-09-06T11:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.682545+00:00",
"state": null,
"do_not_record": false
},
{
"code": "AXHHF3",
"id": 1073133,
"title": "Exporting high-quality Atlas maps in bulk by leveraging OpenStreetMap Data in QGIS",
"abstract": "This workshop is designed to provide participants with practical skills and fundamental knowledge necessary for creating high-quality maps using OpenStreetMap data in QGIS. The course will focus on creating atlases that showcase specific geographic areas by harnessing the power of OSM data. The workshop will provide a comprehensive overview of the entire process involved in atlas creation, including acquiring OSM data, developing a base map, incorporating layers and labels, and exporting the final product. Whether you are an experienced seeking to enhance your skills or a beginner looking to learn new techniques",
"speakers": [
"SQXFVL"
],
"track": 4513,
"start": "2024-09-06T11:30:00+03:00",
"end": "2024-09-06T12:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.682521+00:00",
"state": null,
"do_not_record": false
},
{
"code": "C8B93B",
"id": 1073135,
"title": "OSMF Funding",
"abstract": "The \"OSM Funding\" talk is dedicated to illuminating the management of the OpenStreetMap Foundation as a non-profit organization, reliant on donations and event sponsorship. With a commitment to transparency, the talk aims to provide a clear description of how the OSM Foundation's finances are handled, ensuring the community is informed about fund allocation and usage. By providing a clear understanding of where funds are directed and how they benefit the broader OSM Community, attendees are empowered to build mutual trust with the OSMF. The OSM Foundation endeavors to foster trust and collaboration while maximizing the impact of financial resources for the collective benefit of all of OSM.",
"speakers": [
"FKFUVW"
],
"track": 4517,
"start": "2024-09-06T12:00:00+03:00",
"end": "2024-09-06T12:20:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.682566+00:00",
"state": null,
"do_not_record": false
},
{
"code": "LDB3BA",
"id": 1073136,
"title": "Sustainable Transport on the Map",
"abstract": "Better information leads to better city policy. Unfortunately, many of the world’s cities still lack basic information on their own transport systems, leading to decisions measured against anecdotes rather than data. Using new tools for data processing and display, OpenStreetMap can provide the information that governments need to make better decisions. In this panel we will share recent success stories of cities adopting OSM-based metrics to plan better transport. We will reveal new tools that governments, mappers, and advocates can use. And we will discuss the challenges that still remain and the roles the OSM community can play in overcoming them.",
"speakers": [
"397ENW"
],
"track": 4516,
"start": "2024-09-06T12:00:00+03:00",
"end": "2024-09-06T13:00:00+03:00",
"room": 3176,
"duration": 60,
"updated": "2024-09-07T11:32:48.682587+00:00",
"state": null,
"do_not_record": false
},
{
"code": "WCFXG7",
"id": 1073137,
"title": "A Replicable Model for OpenStreetMap Training Programs in High Schools",
"abstract": "In this presentation, we will share our experience conducting an OpenStreetMap training program with the Kibera Girls' Soccer Academy in Kenya. We will cover various aspects such as the planning process, development of curriculum, hands-on mapping activities, and achieved outcomes. Our aim is to provide practical insights that attendees can use to run similar programs in other schools or regions, promoting greater OpenStreetMap engagement among youth.",
"speakers": [
"KEEP87",
"8DNSXM"
],
"track": 4517,
"start": "2024-09-06T12:30:00+03:00",
"end": "2024-09-06T12:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T22:48:04.098584+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073140,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-06T10:00:00Z",
"end": "2024-09-06T14:30:00+03:00",
"room": 3176
},
{
"id": 1073138,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-06T10:00:00Z",
"end": "2024-09-06T14:30:00+03:00",
"room": 3179
},
{
"id": 1073141,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-06T10:00:00Z",
"end": "2024-09-06T14:30:00+03:00",
"room": 3177
},
{
"id": 1073139,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-06T10:00:00Z",
"end": "2024-09-06T14:30:00+03:00",
"room": 3178
},
{
"code": "YNEPJM",
"id": 1073143,
"title": "Incorporating OpenStreetMap into Academic Curricula: Insights from GeoTE Tanzania's Five-Week Field Training programs with YouthMappers and Academic Partners",
"abstract": "Through this initiative, GeoTE Tanzania focuses on integrating OpenStreetMap (OSM) into academic curricula through five-week Field Training sessions with YouthMappers and academic partners. This program emphasizes practical application and problem-solving using OSM data across disciplines such as wildlife, forestry, agriculture, rural and urban development, and environmental studies. By partnering with universities like Sokoine University of Agriculture, GeoTE facilitates hands-on learning experiences that prepare students to address community challenges with geospatial techniques.",
"speakers": [
"CCLRGB"
],
"track": 4511,
"start": "2024-09-06T14:30:00+03:00",
"end": "2024-09-06T14:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.682787+00:00",
"state": null,
"do_not_record": false
},
{
"code": "FRFJBJ",
"id": 1073144,
"title": "Mapping the classroom with Every Door",
"abstract": "This is a practical lesson on mapping with Every Door app. The idea for the app is, it's not enough to just map: you should map every single thing you see. So let's train our mapping muscles a bit: it's not a problem that we're inside, treat it as an art class. We will be making art with a map editor. Hopefully nobody would ban us for this haha.",
"speakers": [
"TJ9EBM"
],
"track": 4512,
"start": "2024-09-06T14:30:00+03:00",
"end": "2024-09-06T15:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.682808+00:00",
"state": null,
"do_not_record": false
},
{
"code": "98JMSV",
"id": 1073142,
"title": "Some Assembly Required",
"abstract": "The more detailed our mapping of the real world becomes, the more it becomes apparent that a single node, way or relation is insufficient to represent the complex properties of a real-word object. Streets have many lanes. Buildings have entrances, 3D shapes and POIs inside. And let's not even start talking about the complexity of a major railway station.\r\n\r\nThis talk will take a systematic look at the different ways how complex objects are being mapped in OSM. We explore how editors cope with the complexities of detailed mapping and discuss the implication on how our processing tools need to change to better handle relationships between objects.",
"speakers": [
"RD7F9S"
],
"track": 4515,
"start": "2024-09-06T14:30:00+03:00",
"end": "2024-09-06T14:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.682764+00:00",
"state": null,
"do_not_record": false
},
{
"code": "3D9RGU",
"id": 1073145,
"title": "Setting the Stage for the Future of Web Based Mapping",
"abstract": "Over the years, iD has become a quite capable, versatile and reliable editor for OSM. However, it is currently also facing of a number of challenges: For example, it needs to keep being able to cope with the growing amount and richness of OSM’s map data, as well as to afford the increasingly important task of keeping the map up to date.\r\n\r\nThis talk outlines a proposal to transform iD’s current user interface centered around OSM’s data model into an adaptive user experience that is better tailored towards the needs of individual mappers and outlines an approach of how we can get there as a community.",
"speakers": [
"3LA7XB"
],
"track": 4512,
"start": "2024-09-06T15:00:00+03:00",
"end": "2024-09-06T15:20:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.682828+00:00",
"state": null,
"do_not_record": false
},
{
"code": "MRQDGE",
"id": 1073146,
"title": "Photo mapping from my village to Pharmacies and Addresses",
"abstract": "**A picture is worth a thousand words**, I am a Pharmacists by training and only discovered the love for technology and maps recently. After discovering OpenStreetMap and taking up mapping based on interest. I share my experience, motivation and how I have used photos to improve OpenStreetMap data in Accra.",
"speakers": [
"3PGXJV"
],
"track": 4512,
"start": "2024-09-06T15:00:00+03:00",
"end": "2024-09-06T15:20:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.682848+00:00",
"state": null,
"do_not_record": false
},
{
"code": "A7DUFU",
"id": 1073148,
"title": "Women in OSM Tech - What worked best for me.",
"abstract": "This proposal outlines my journey into the tech sector via OpenStreetMap (OSM) as a woman with no prior tech background. I'll share my transformation from beginner mapper to proficient user, skilled in OSM mapping and QGIS for data analysis.In a field where women's representation is limited, my involvement in OSM Tech stands as a testament to breaking barriers and fostering inclusivity—an opportunity provided to me by OpenMap Development Tanzania (OMDTZ). I’ll show the significance of providing equal opportunities and a supportive environment for women in technology in OSM and highlight the potential of OSM as a catalyst for personal and professional advancement.",
"speakers": [
"QEWN7L"
],
"track": 4517,
"start": "2024-09-06T15:30:00+03:00",
"end": "2024-09-06T15:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.682888+00:00",
"state": null,
"do_not_record": false
},
{
"code": "J9ATMQ",
"id": 1073147,
"title": "A Novel Approach to Street-Level Data Collection: Using Customized Bajaji (tricycle) and Mapillary to Enrich OpenStreetMap in Dar es Salaam",
"abstract": "In recent years, data creation methods have evolved, incorporating machine learning, AI, deep learning, and virtual reality to streamline processes. However, these advancements have not uniformly benefited communities in developing countries. Nonetheless, OMDTZ tirelessly seeks solutions to ensure more high-quality data are gathered, with low cost and extensive local involvement. One standout initiative involves a customized tricycle, known as bajaj, which is cost-effective, enabling access to streets of varying conditions. Equipped with an affordable street view camera, it collects images used to automate generation of vector data attributes to enrich OpenStreetMap. This session aims to share the experience and process, inspiring other communities to consider similar adaptations.",
"speakers": [
"AU9QGF"
],
"track": 4512,
"start": "2024-09-06T15:30:00+03:00",
"end": "2024-09-06T15:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.682868+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073149,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T13:00:00Z",
"end": "2024-09-06T16:30:00+03:00",
"room": 3178
},
{
"id": 1073151,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T13:00:00Z",
"end": "2024-09-06T16:30:00+03:00",
"room": 3179
},
{
"id": 1073150,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T13:00:00Z",
"end": "2024-09-06T16:30:00+03:00",
"room": 3176
},
{
"id": 1073152,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-06T13:00:00Z",
"end": "2024-09-06T16:30:00+03:00",
"room": 3177
},
{
"code": "HCCLGL",
"id": 1073154,
"title": "Hands-on data validation on OSM: best practices and tools",
"abstract": "The workshop is designed for beginner to intermediate mappers to better understand good practices and useful tools while performing data validation on OSM.\r\nDuring the session it will be presented how to discover and interact with mappers in the area to be validated, as well as how to use JOSM plugins and web tools as ResultMaps, Osmose, Whodidit and OSMCha to analyze errors and changesets.\r\nParticipants are requested to bring their laptops and mouses to practice together. Basic understanding of JOSM is welcome but not necessary",
"speakers": [
"BCLAGF",
"HGCMWV"
],
"track": 4512,
"start": "2024-09-06T16:30:00+03:00",
"end": "2024-09-06T17:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.683029+00:00",
"state": null,
"do_not_record": false
},
{
"code": "HCCLGL",
"id": 1073155,
"title": "Hands-on data validation on OSM: best practices and tools",
"abstract": "The workshop is designed for beginner to intermediate mappers to better understand good practices and useful tools while performing data validation on OSM.\r\nDuring the session it will be presented how to discover and interact with mappers in the area to be validated, as well as how to use JOSM plugins and web tools as ResultMaps, Osmose, Whodidit and OSMCha to analyze errors and changesets.\r\nParticipants are requested to bring their laptops and mouses to practice together. Basic understanding of JOSM is welcome but not necessary",
"speakers": [
"BCLAGF",
"HGCMWV"
],
"track": 4512,
"start": "2024-09-06T16:30:00+03:00",
"end": "2024-09-06T17:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.683049+00:00",
"state": null,
"do_not_record": false
},
{
"code": "99HWEX",
"id": 1073156,
"title": "Community Capacity Building- Case Study OSM Kenya",
"abstract": "Examining the case of OSM Kenya, we showcase and exhibit how initiatives have empowered local communities through open mapping, fostering collaborations, and skill development. We have catalyzed sustainable impact driving positive change across the country and around the world through empowering over 200+ young people who are members of our community. Gaining insights and strategies for enhancing community engagement and capacity within the OpenStreetMap ecosystem in Kenya and beyond borders.",
"speakers": [
"U3AWDU",
"9N3L7T"
],
"track": 4517,
"start": "2024-09-06T16:30:00+03:00",
"end": "2024-09-06T17:10:00+03:00",
"room": 3177,
"duration": 40,
"updated": "2024-09-07T11:32:48.683068+00:00",
"state": null,
"do_not_record": false
},
{
"code": "V3FYDH",
"id": 1073153,
"title": "On the Ground",
"abstract": "OpenStreetMap is a community project to map the world. Everybody can contribute whatever they want. Or can they? What are the rules that govern what can be mapped in OSM and how? How are we creating a coherent global map and not just a bunch of random data about the world?",
"speakers": [
"LULDTS",
"9GGAN8"
],
"track": 4517,
"start": "2024-09-06T16:30:00+03:00",
"end": "2024-09-06T17:10:00+03:00",
"room": 3176,
"duration": 40,
"updated": "2024-09-07T11:32:48.683009+00:00",
"state": null,
"do_not_record": false
},
{
"code": "87HBBY",
"id": 1073158,
"title": "Lightning Talks I",
"abstract": "There will be a board where you can sign up for a lightning talks. There are three slots for lightning talks at this conference. Each lightning talk is five minutes long. The topic must be about OpenStreetMap. Prior submission is not required. But if you are not in Nairobi you can send us a prerecorded lightning talk that we will stream during the conference.\r\n\r\n## Discover OSM with free GIS tools in Africa geoportal\r\n_by Esri Eastern Africa_\r\n\r\n## Disaster hackathon 2.0 in Bangladesh\r\n_by Ibtehal_\r\n\r\n## YouthMappas activities an growth in Sri Lanka\r\n_by Sajeevini Sivajothy_\r\n\r\n## Geospatial conference Tanzania (GIS day) November 15-16 2024)\r\n_by Kawamala Antidius_\r\n\r\n## Discover the UN maps learning hub!\r\n_by Sevevin Menavo_\r\n\r\n## Impact of anticipatory mapping in disaster preparedness\r\n_by Jacques Niyigena",
"speakers": [
"YNFKER"
],
"track": 5009,
"start": "2024-09-06T17:30:00+03:00",
"end": "2024-09-06T17:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683106+00:00",
"state": null,
"do_not_record": false
},
{
"code": "MRBEFX",
"id": 1073157,
"title": "Strengthening Collaboration between Organizations and Local Communities in West Africa Through the OSMer in Residence Program",
"abstract": "Improving the map in OpenStreetMap involves data availability and reliability. Through the operations in which they are involved, organizations have a vast amount of data at their disposal, much of which is confidential and goes against the spirit of Open Data, which is all about sharing. This session will show how the OSMer in Residence program has fostered this paradigm shift through collaboration between HOT's Western and Northern Africa Hub and Médeçins Sans Frontières",
"speakers": [
"Z9CA8S",
"C7C8DL"
],
"track": 4517,
"start": "2024-09-06T17:30:00+03:00",
"end": "2024-09-06T17:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683087+00:00",
"state": null,
"do_not_record": false
},
{
"code": "B3EH7D",
"id": 1073159,
"title": "Mapping Kenya: 15 Years of Map Kibera and beyond",
"abstract": "Map Kibera arose from a desire to expand OSM beyond the confines of Europe and North America. In 2009, it pushed the boundaries of what then-new technologies could do. What have the mappers learned over the years? This talk will welcome you to Nairobi and through the ups and downs of mapping in Kenya - from the history of mapping in 20th Kenya, through Map Kibera’s start, into slums and rural parts of Kenya, and finally to current-day Kibera, where mappers are mapping street lights, waste disposal, schools, and more. How has Map Kibera and OSM had a community impact even as drones, satellite technology and AI are revolutionizing mapping? What has changed, and what has remained the same? We will discuss the global impact of Map Kibera, on community-based mapping in OSM and on the general application of technology in developing countries.",
"speakers": [
"KGDXUA",
"7GBE77"
],
"track": 4512,
"start": "2024-09-07T10:00:00+03:00",
"end": "2024-09-07T10:40:00+03:00",
"room": 3176,
"duration": 40,
"updated": "2024-09-07T11:32:48.683125+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073160,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T08:00:00Z",
"end": "2024-09-07T11:30:00+03:00",
"room": 3177
},
{
"id": 1073163,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T08:00:00Z",
"end": "2024-09-07T11:30:00+03:00",
"room": 3176
},
{
"id": 1073162,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T08:00:00Z",
"end": "2024-09-07T11:30:00+03:00",
"room": 3179
},
{
"id": 1073161,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T08:00:00Z",
"end": "2024-09-07T11:30:00+03:00",
"room": 3178
},
{
"code": "PCW97R",
"id": 1073164,
"title": "OSM Wiki editing workshop",
"abstract": "Do you know about a mistake on the OSM wiki?\r\n\r\nHave you wanted to fix it but you are unsure how?\r\n\r\nDo you want to document some already used tag?\r\n\r\nDo you want to add better illustration to some wiki page?\r\n\r\nIs translation of one of wiki pages broken or missing and you want to add it but not sure how to do this?\r\n\r\nAre you confused by OSM Wiki page?\r\n\r\nThis will be a fitting workshop for you! I will help you to fix the problem and edit OSM Wiki.\r\n\r\nIdeally, in future you will be own to make such fix on your own.",
"speakers": [
"ZBGMZE"
],
"track": 4511,
"start": "2024-09-07T11:30:00+03:00",
"end": "2024-09-07T12:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.683240+00:00",
"state": null,
"do_not_record": false
},
{
"code": "VS77B3",
"id": 1073166,
"title": "Preparing for disasters with open map data and tools - learning through anticipatory action in Zimbabwe, Liberia and Timor Leste",
"abstract": "Historically, the open mapping movement’s disaster focus has been response, but evolving local capacity, insight, technology and partnerships mean new anticipatory action and disaster preparedness open mapping methodologies enable a transition from reactive to proactive approaches to disaster management.\r\n\r\nThis talk explores key findings on the transformative role of open mapping in this topic, demonstrated by three HOT collaborations; Anticipatory Response Program in Zimbabwe, Flood Tracking Project in Liberia, and Mapping for Anticipatory Action in Timor-Leste, plus analysis of post-disaster data demand from NGO and government responders. \r\n\r\nThe talk will also surface insights on how OSM communities can increase their own disaster resilience and preparedness through mapping.",
"speakers": [
"RPM7DD",
"AXSB3U"
],
"track": 4515,
"start": "2024-09-07T11:30:00+03:00",
"end": "2024-09-07T11:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683278+00:00",
"state": null,
"do_not_record": false
},
{
"code": "BXGLWA",
"id": 1073165,
"title": "Cloud-native OSM for Visualization & Analysis",
"abstract": "[Cloud-native approaches and formats](https://cloudnativegeo.org/) are increasingly becoming the defaults for geospatial data analysis, visualisation and distribution. Standards like STAC and formats like GeoParquet, FlatGeobuf and PMTiles are being adopted to meet high volume and performance needs. OpenStreetMap can take advantage of these new approaches to increase adoption, interoperability and solve analysis and visualisation problems that were previously complex. This talk will discuss a few ways to bring cloud-native formats to OSM use-cases and present lessons on building new applications that take advantage of these improvements. Particularly, we will discuss how to use cloud-native approaches to improve OSM validation and change visualization efforts.",
"speakers": [
"PBXG7S",
"7RHVP9"
],
"track": 4515,
"start": "2024-09-07T11:30:00+03:00",
"end": "2024-09-07T11:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683259+00:00",
"state": null,
"do_not_record": false
},
{
"code": "ZHME3F",
"id": 1073168,
"title": "Improving data homogeneity across a country",
"abstract": "This talk aims to share the efforts of OSM contributors to improve national datasets based on experiences in the Democratic Republic of the Congo. From data analyses to the setup of crowdmapping projects through welcoming new mappers to join and writing documentation. This talk is going to introduce a number of existing tools that proved to be useful in the DRC community.",
"speakers": [
"XPVECQ"
],
"track": 4512,
"start": "2024-09-07T12:00:00+03:00",
"end": "2024-09-07T12:20:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683316+00:00",
"state": null,
"do_not_record": false
},
{
"code": "T3CXBD",
"id": 1073167,
"title": "MapLibre Tiles: A Next Generation Vector Tiles Format specially designed for OSM data",
"abstract": "MapLibre Tiles (MLT) is a new vector tiles format which offers a significant tile size reduction and accelerated decoding performance compared to the de-facto standard Mapbox Vector Tiles (MVT). MLT also adds support for missing features like nested properties, linear referencing and M-values. Our evaluation against MVT on a OpenMapTiles schema based OSM tileset shows a reduction in tile size of nearly up to 80% with even faster decoding times. This talk explains how MLT can be used in combination with OSM data and the advantages it offers.",
"speakers": [
"N9BQZ3"
],
"track": 4514,
"start": "2024-09-07T12:00:00+03:00",
"end": "2024-09-07T12:20:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683297+00:00",
"state": null,
"do_not_record": false
},
{
"code": "EBMVWS",
"id": 1073169,
"title": "OpenStreetMap and the GDPR",
"abstract": "The privacy that OpenStreetMap gives to users in its software and programming interface has lagged behind the requirements of the European Union’s General Data Protection Regulation in some respects. We are now taking steps to remedy this and the changes that mappers and API clients will see are discussed here.",
"speakers": [
"VWQAZR"
],
"track": 4516,
"start": "2024-09-07T12:30:00+03:00",
"end": "2024-09-07T12:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683334+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073171,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-07T10:00:00Z",
"end": "2024-09-07T14:30:00+03:00",
"room": 3176
},
{
"id": 1073173,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-07T10:00:00Z",
"end": "2024-09-07T14:30:00+03:00",
"room": 3177
},
{
"id": 1073170,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-07T10:00:00Z",
"end": "2024-09-07T14:30:00+03:00",
"room": 3178
},
{
"id": 1073172,
"title": {
"en": "Lunch Break"
},
"start": "2024-09-07T10:00:00Z",
"end": "2024-09-07T14:30:00+03:00",
"room": 3179
},
{
"code": "MJKAC8",
"id": 1073174,
"title": "Download OSM data translated into your language using free software components and standard protocols",
"abstract": "This presentation will introduce a download service of OpenStreetMap GIS layers in English, but also in French for French-speaking areas. In addition to the translation aspect, this service is intended as a proof of concept for an approach that is interoperable, flexible and replicable: it uses open source software components, some of which are supported by OSGeo, and interoperable WMS and WFS protocols of the OGC (Open Geospatial Consortium), while providing detailed OSM data for the countries in question.",
"speakers": [
"HGCMWV"
],
"track": 4514,
"start": "2024-09-07T14:30:00+03:00",
"end": "2024-09-07T14:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683445+00:00",
"state": null,
"do_not_record": false
},
{
"code": "HS8SVU",
"id": 1073175,
"title": "Meet the OSMF Working Groups",
"abstract": "The OSM Foundation is kept running with the help of many volunteers. They look after our servers, the data, the community, the conference, membership and much more. In this session, some of our working groups will introduce themselves. Hear about what they do and how you can help. There will be also plenty of time to ask questions.",
"speakers": [
"RD7F9S"
],
"track": 4517,
"start": "2024-09-07T14:30:00+03:00",
"end": "2024-09-07T15:10:00+03:00",
"room": 3176,
"duration": 40,
"updated": "2024-09-07T11:32:48.683464+00:00",
"state": null,
"do_not_record": false
},
{
"code": "L7SUBJ",
"id": 1073176,
"title": "Easy Access to ohsome full history OSM contributions using cloud hosted GeoParquet",
"abstract": "This workshop teaches you how you can accelerate OSM data analysis without the need to run your own computing cluster. We will provide a sneak preview about our new cloud hosted ohsome full history contributions data and will show you how you can use it to understand the dynamics in OSM.",
"speakers": [
"E8WPXD",
"JWED7P",
"WABK8C"
],
"track": 4515,
"start": "2024-09-07T14:30:00+03:00",
"end": "2024-09-07T15:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.683483+00:00",
"state": null,
"do_not_record": false
},
{
"code": "A3Y3BC",
"id": 1073177,
"title": "State of the art in combining OSM and Linked Data",
"abstract": "Thousands of Linked [Open] Data sources and knowledge graphs allow to access an enormous amount of structured interconnected data with built in interoperability. This talk explains the basics of Linked Data and offers an overview about the potential its combination with OSM has and the most popular methods available for linking, extracting, combining and querying data from OSM and Linked Data sources.",
"speakers": [
"GXP7GW"
],
"track": 4516,
"start": "2024-09-07T15:00:00+03:00",
"end": "2024-09-07T15:20:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683503+00:00",
"state": null,
"do_not_record": false
},
{
"code": "3ZU3ZR",
"id": 1073179,
"title": "Open mapping through tropical forest biodiversity conservation",
"abstract": "The botanical collection Arboretum and Palmetum Leon Morales Soto houses 412 species from 64 botanical families, totaling 4892 individuals. The mapping carried out by the SAGEMA chapter of YouthMappers allowed sharing valuable information about Colombian flora with the university community, facilitating its conservation and recognition through the integration of collection data into OSM. The project aims to promote the conservation of threatened tropical ecosystems through open mapping. It involved the participation of 12 students and a training strategy through open workshops to replicate the project in other Latin American regions.",
"speakers": [
"RPBMWS"
],
"track": 4512,
"start": "2024-09-07T15:30:00+03:00",
"end": "2024-09-07T15:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683540+00:00",
"state": null,
"do_not_record": false
},
{
"code": "ZVVQTA",
"id": 1073178,
"title": "The Journal of Importing Open Data Address in Taiwan into OpenStreetMap",
"abstract": "Importing a government-release open data dataset is an important data source for OpenStreetMap. I will talk about the experience of the OpenStreetMap Taiwan community importing tasks. I will describe the methods and the challenges we face during the whole import process. We have already dealt with 9 counties and cities' address datasets, and looking forward to dealing with more datasets released by other local government agencies in the future.",
"speakers": [
"DWDVZS"
],
"track": 4512,
"start": "2024-09-07T15:30:00+03:00",
"end": "2024-09-07T15:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683522+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073182,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T13:00:00Z",
"end": "2024-09-07T16:30:00+03:00",
"room": 3176
},
{
"id": 1073181,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T13:00:00Z",
"end": "2024-09-07T16:30:00+03:00",
"room": 3177
},
{
"id": 1073180,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T13:00:00Z",
"end": "2024-09-07T16:30:00+03:00",
"room": 3179
},
{
"id": 1073183,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-07T13:00:00Z",
"end": "2024-09-07T16:30:00+03:00",
"room": 3178
},
{
"code": "8XCQJB",
"id": 1073184,
"title": "OSMF board – what are they even doing?",
"abstract": "If you have ever wondered what OSMF and OSMF board are doing and why they exist it is a good presentation for you.\r\nWill include a brief overview (as promised in the title) of what they are doing, reason for their existence and why you may want to care about them. And why you may want join the board or one of working groups.\r\nPresented by OSMF board member.",
"speakers": [
"ZBGMZE"
],
"track": 4511,
"start": "2024-09-07T16:30:00+03:00",
"end": "2024-09-07T16:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683655+00:00",
"state": null,
"do_not_record": false
},
{
"code": "HLR7MM",
"id": 1073186,
"title": "Build an OpenStreetMap walking tour with a free and open source video game",
"abstract": "Minetest Classroom is a free and open source (https://github.com/ubc-minetest-classroom/minetest_classroom) educational, voxel-based sandbox video game that supports the ability to create digital twins from geospatial data, including OpenStreetMap data. In this hands-on workshop, you will learn how to create your own walking tour from OpenStreetMap data with this powerful game. Participants will be able to join a multiplayer server and experience an OpenStreetMap world first-hand. We will also discuss possible lesson plans for teachers looking to engage students with OpenStreetMap, the possibilities for multi-sensory video game cartography more generally, and the future of creating an OpenStreetMap editor in a video game.",
"speakers": [
"GZKADJ"
],
"track": 4513,
"start": "2024-09-07T16:30:00+03:00",
"end": "2024-09-07T17:30:00+03:00",
"room": 3179,
"duration": 60,
"updated": "2024-09-07T11:32:48.683693+00:00",
"state": null,
"do_not_record": false
},
{
"code": "HVVYM7",
"id": 1073185,
"title": "Generating Ways with the Strava Heatmap",
"abstract": "The Strava Global Heatmap visualizes aggregated public GPS traces, guiding athletes worldwide in planning their routes by highlighting popular paths. This presentation demonstrates how the Heatmap, in conjunction with our routing engine, can be utilized to identify and fill in missing ways in OpenStreetMap (OSM). We will discuss an algorithmic strategy for creating generated pathways and introduce a prototype of an interface that facilitates the easy integration of these pathways into OSM. We will showcase how Strava's Heatmap can promote OSM's goal of developing a more comprehensive global map, highlighting a mutually beneficial relationship between the two platforms.",
"speakers": [
"HHN9VA"
],
"track": 4512,
"start": "2024-09-07T16:30:00+03:00",
"end": "2024-09-07T16:50:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683674+00:00",
"state": null,
"do_not_record": false
},
{
"code": "SYRTRW",
"id": 1073187,
"title": "Lightning Talks II",
"abstract": "There will be a board where you can sign up for a lightning talks. There are three slots for lightning talks at this conference. Each lightning talk is five minutes long. The topic must be about OpenStreetMap. Prior submission is not required. But if you are not in Nairobi you can send us a prerecorded lightning talk that we will stream during the conference.\r\n\r\n## E-Comappers activities and growth in Rwanda\r\n_by Liliane Nishimirwe_\r\n\r\n## Hot CWG mentorship\r\n_by Benedicta Ohene_\r\n\r\n## Youthmappers activities and growth in Sri Lanka (2021-2024)\r\n_by Sajeevini Sivajothy_\r\n\r\n## #DEI in OSM - Ladies in maps Zimbabwe\r\n_by Letwin Pondo_\r\n\r\n## Microgrants program in Latin America\r\n_by Maya Low_\r\n\r\n## My journey in OSM: Youth mappers Tanzania\r\n_by Iman Seleman_",
"speakers": [
"YNFKER"
],
"track": 5009,
"start": "2024-09-07T17:00:00+03:00",
"end": "2024-09-07T17:20:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T13:04:26.335186+00:00",
"state": null,
"do_not_record": false
},
{
"code": "N7TGMA",
"id": 1073188,
"title": "Catching OSM Up with External Data with a Workflow and Tools for Conflation and Validation",
"abstract": "This report outlines a project to improve the workflow for integrating external open datasets into OpenStreetMap (OSM), ensuring compliance with import guidelines. The process includes tools for conflating data with OSM, supported by roles and tasks specific to this workflow. The AllThePlaces project supports this by extracting and mapping open (government) data to the OSM schema. A new tool, \"DiffedPlaces\", is proposed to automate diffs, perform data matching with an improved machine learning algorithm, and host the results. In addition, the existing OSM Conflator tool set, enhanced with a web-based data validation application, will be connected to DiffedPlaces.",
"speakers": [
"EM9MWR"
],
"track": 4514,
"start": "2024-09-07T17:00:00+03:00",
"end": "2024-09-07T17:20:00+03:00",
"room": 3177,
"duration": 20,
"updated": "2024-09-07T11:32:48.683731+00:00",
"state": null,
"do_not_record": false
},
{
"code": "XUJWAM",
"id": 1073190,
"title": "openrouteservice version 8 - Experiences and insights from 10+ years of running and providing a global OSM-driven, free and open-source routing engine",
"abstract": "Starting as a small research project at the University of Bonn and later the University of Heidelberg at around 2008, Openrouteservice has been steadily growing since. This ensures that now almost 120,000 users get free and equal access to basic mobility solutions every day. With the release of version 8, this conference talk will give you an exclusive behind-the-scenes look at almost a decade of OpenStreetMap-driven open-source software development and delivery. Our successes and challenges, and how we stayed true to our values, providing free and open-source software as a non-profit organization.",
"speakers": [
"8RD9TG"
],
"track": 4514,
"start": "2024-09-08T09:30:00+03:00",
"end": "2024-09-08T09:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683769+00:00",
"state": null,
"do_not_record": false
},
{
"code": "98YGWG",
"id": 1073189,
"title": "Get to know OSGeo and expand Your Open Mapping Toolkit",
"abstract": "Are you familiar with OpenStreetMap but want to take your geospatial skills to the next level? This workshop introduces you to the Open Source Geospatial Foundation (OSGeo) and how its various software projects interact with OpenStreetMap data. This will help you to unlock new possibilities for analysis, visualization, and more.\r\n\r\nThrough a hands-on session using OSGeoLive, participants will:\r\n- Explore OSGeo platforms like QGIS, PostGIS, and OpenLayers.\r\n- Discover how these tools integrate with OpenStreetMap data through hands-on exercises.",
"speakers": [
"KEEP87"
],
"track": 4515,
"start": "2024-09-08T09:30:00+03:00",
"end": "2024-09-08T10:30:00+03:00",
"room": 3178,
"duration": 60,
"updated": "2024-09-07T11:32:48.683751+00:00",
"state": null,
"do_not_record": false
},
{
"code": "NHZVNW",
"id": 1073191,
"title": "How to develop your own style of OpenMapTiles with your favorite editor?",
"abstract": "This presentation introduces how to develop your own style of OpenMapTiles for MapLibre GL from scratch with *your favorite editor*.\r\n\r\n- Introduce of OpenMapTiles schema.\r\n- Introduce of Charites to use your favorite editor.\r\n- Introduce of other tools to compile JSON format for MapLibre GL.\r\n\r\nThis presentation describes with how to use command line tools to create MapLibre GL style.\r\nI recommend to use UNIX based operation system or Raspberry Pi.\r\nThe editors supports VS Code, Emacs, or Vim.",
"speakers": [
"QS9XHH"
],
"track": 4513,
"start": "2024-09-08T10:00:00+03:00",
"end": "2024-09-08T10:20:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683788+00:00",
"state": null,
"do_not_record": false
},
{
"code": "ZZTZRB",
"id": 1073200,
"title": "Lightning Talks III",
"abstract": "There will be a board where you can sign up for a lightning talks. There are three slots for lightning talks at this conference. Each lightning talk is five minutes long. The topic must be about OpenStreetMap. Prior submission is not required. But if you are not in Nairobi you can send us a prerecorded lightning talk that we will stream during the conference.\r\n\r\n## Campus Guide: Enhance campus navigation through accurate and updated OSM maps\r\n_by Victor Ademoyero_\r\n\r\n## Mapswipe for web\r\n_by Geoffrey Kateregga_\r\n\r\n## Mapping activities and impact in Uganda by geo-youthmappers\r\n_by Umar Katomgole_\r\n\r\n## OSM and OpentherialMap data for machine learning\r\n_by Remígio Chilaule_\r\n\r\n## Essentials for a geospatial entrepreneur\r\n_by Antidius Kawamala_\r\n\r\n## Perspective of women participation in OSM (Brief insights of sunray conducted in March 2023\r\n_by Benedicta Ohere_",
"speakers": [
"YNFKER"
],
"track": 5009,
"start": "2024-09-08T10:30:00+03:00",
"end": "2024-09-08T10:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-08T05:54:05.974681+00:00",
"state": null,
"do_not_record": false
},
{
"id": 1073194,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-08T08:00:00Z",
"end": "2024-09-08T11:30:00+03:00",
"room": 3177
},
{
"id": 1073193,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-08T08:00:00Z",
"end": "2024-09-08T11:30:00+03:00",
"room": 3176
},
{
"id": 1073195,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-08T08:00:00Z",
"end": "2024-09-08T11:30:00+03:00",
"room": 3179
},
{
"id": 1073196,
"title": {
"en": "Coffee Break"
},
"start": "2024-09-08T08:00:00Z",
"end": "2024-09-08T11:30:00+03:00",
"room": 3178
},
{
"code": "PRQKRX",
"id": 1073197,
"title": "The Current State of Collaboration between Digital Twin and OSM",
"abstract": "In recent years, advancements in 3D city models have been instrumental in urban planning and public engagement. In Japan, over 200 cities have adopted open digital twin data in CityGML format as promoted by Project PLATEAU of the Ministry of Land, Infrastructure, Transport and Tourism. This initiative, detailed in Binyu et al.'s research and the 3D City Index report, involves collaboration with the global OpenStreetMap community. Utilizing open database license ODbL, the integration of digital twin data with OpenStreetMap has been explored since 2022, aiming to enhance the global adoption of 3D city models and showcase the benefits of collaborative urban development.",
"speakers": [
"EDWH9Q"
],
"track": 4515,
"start": "2024-09-08T11:30:00+03:00",
"end": "2024-09-08T11:50:00+03:00",
"room": 3176,
"duration": 20,
"updated": "2024-09-07T11:32:48.683920+00:00",
"state": null,
"do_not_record": false
},
{
"code": "YNBJGQ",
"id": 1073198,