-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtalks.json
More file actions
2360 lines (2360 loc) · 121 KB
/
talks.json
File metadata and controls
2360 lines (2360 loc) · 121 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
{
"talks": [
{
"code": "GEBE8Z",
"id": 1350946,
"title": "Opening",
"abstract": "We welcome the OpenStreetMap community in Manila but also online to celebrate the international State of the Map conference. This session will also provide some formal instructions and helpful information. You will for example learn how the QA (question and answer) sessions are run. And what we will do on Friday and Saturday evening.",
"speakers": [
"YNFKER"
],
"track": 5522,
"start": "2025-10-03T09:30:00+08:00",
"end": "2025-10-03T10:30:00+08:00",
"room": 4375,
"duration": 20,
"updated": "2025-10-05T01:30:57.569405+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "U9MSCX",
"id": 1350947,
"title": "HOT 15-year Anniversary",
"abstract": "The Humanitarian OpenStreetMap Team (HOT) celebrates its 15th anniversary in 2025. This presentation will explore HOT's evolution from a small group of mappers responding to the Haiti earthquake to a global organization at the forefront of humanitarian mapping. We'll delve into key milestones, technological advancements, the growth of the HOT community, and the increasing role of local mappers in leading humanitarian responses. The talk will also address the challenges and opportunities for the next 15 years, including sustainability, technological innovation, and expanding the impact of open mapping in a changing world. This presentation will examine how HOT has transformed disaster response, development initiatives, and community empowerment through collaborative mapping. It will also look at how HOT has fostered a global community of mappers and the impact of open data on humanitarian efforts. Furthermore, the presentation will discuss the strategic directions HOT is taking to ensure its continued relevance and effectiveness in an ever-changing technological and global landscape, emphasizing the importance of partnerships, innovation, and inclusivity.",
"speakers": [
"BE3HTH"
],
"track": 5522,
"start": "2025-10-03T10:30:00+08:00",
"end": "2025-10-03T10:50:00+08:00",
"room": 4375,
"duration": 20,
"updated": "2025-10-05T01:30:57.569441+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1350953,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4376
},
{
"id": 1350954,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4379
},
{
"id": 1350948,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4910
},
{
"id": 1350952,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4378
},
{
"id": 1350951,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4911
},
{
"id": 1350950,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4375
},
{
"id": 1350949,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T03:00:00Z",
"end": "2025-10-03T12:00:00+08:00",
"room": 4377
},
{
"code": "LPDJXY",
"id": 1350955,
"title": "Awesome (OSM) Games",
"abstract": "OpenStreetMap and games feel like they go hand-in-hand and that's more than just coincidental. Both OSM and gaming have the power to bring people together, foster community engagement, and provide unique experiences. \r\n\r\nIn fact, the OSM wiki has a page for games built using OSM data (https://wiki.openstreetmap.org/wiki/Games) and in recent years, we've seen the increase in the use of tools such as MapRoulette and StreetComplete that gamify the experience of contributing to OSM. While the latter is a very interesting topic in itself, this talk will focus on the former—games that use, but are not necessarily intended to contribute, OSM data.\r\n\r\nIn this talk, we will explore the world of OSM-based/OSM-adjacent games to try and identify various game categories/genres and uses of OSM such as in location-based games (e.g. PokemonGO), serious and realistic simulation games, educational and trivia games, other niche/bespoke games, as well as both digital and tangible/tactile experiences.\r\n\r\nFurthermore, we will try to investigate the benefits and drawbacks of using OSM in games and look into other open source \"games/game resources/gaming communities\" (such as those in the Open Source Tabletop/RPG genre) to uncover possible intersections and opportunities.\r\n\r\nWhether you're a beginner or experienced OSM contributor, a game developer, or just a fellow gamer, this talk aims to spark new ideas and inspire further discussions, activities, and developments around the intersection of OpenStreetMap and games.",
"speakers": [
"988B3D"
],
"track": 5521,
"start": "2025-10-03T12:00:00+08:00",
"end": "2025-10-03T12:20:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.569670+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "NRJEVM",
"id": 1350956,
"title": "Walking Milano: Unveiling the City’s Character Through 360° Street-Level Panorama Imagery.",
"abstract": "Between September 2024 and August 2025, we conducted a comprehensive street-level survey of Milano, Italy, capturing approximately one million 360° panoramic images using a monopod-mounted camera setup. These images were uploaded to Mapillary, contributing to open-access urban geospatial data. This presentation shares practical insights into continuous data collection methods and analyzes urban characteristics discernible from the imagery, such as graffiti prevalence, urban greenery distribution, and the potential of these visuals as foundational data for 3D digital twin models. I will discuss the current capabilities and limitations of using crowdsourced street-level imagery for urban analysis and planning.",
"speakers": [
"EDWH9Q"
],
"track": 5517,
"start": "2025-10-03T12:30:00+08:00",
"end": "2025-10-03T12:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.569704+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1350960,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4376
},
{
"id": 1350957,
"title": {
"en": "Lunch break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4910
},
{
"id": 1350963,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4379
},
{
"id": 1350959,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4377
},
{
"id": 1350961,
"title": {
"en": "Lunch break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4911
},
{
"id": 1350958,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4375
},
{
"id": 1350962,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-03T05:00:00Z",
"end": "2025-10-03T14:30:00+08:00",
"room": 4378
},
{
"code": "XTXSYU",
"id": 1350964,
"title": "Birds of Feather/BoF Apo I",
"abstract": "Birds of a Feather sessions are spontaneous, self-organized sessions related to OpenStreetMap. This slot is still unassigned.\r\n\r\nYou can sign up for a self-organised session at the \"BoF\" white board at the conference venue.",
"speakers": [],
"track": 6396,
"start": "2025-10-03T14:30:00+08:00",
"end": "2025-10-03T16:00:00+08:00",
"room": 4375,
"duration": 30,
"updated": "2025-10-05T01:30:57.569904+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "9HN9SX",
"id": 1350966,
"title": "Keeping alive OSMTracker",
"abstract": "This is a story about the last 7 years of OSMTracker and how, from an academic space in a Costa Rican public university, we managed to keep alive the app with computer engineering undergrad students. We want to share what we have learned: the challenges and contributions during this process, and how we plan to continue. \r\n\r\nOSMTracker is one of the oldies free software data capture tools in the OSM ecosystem. Its simplicity, low technical requirements, easy customization, and ability to use the exported data in various applications make it a valuable resource for mappers. The app became part of the methodological resources used by the Laboratorio Experimental de Computación y Comunidades (LabComún) for development of university extension projects together with communities like Erizo Juan Santamaría Informal settlements and Alajuela en Cleta urban cycling collective. Naturally, the usage of OSMTracker in this context showed us improvements needed in the app, and consequently, we contributed with code that were incorporated in the tool. \r\n\r\nIn 2018, nguillaumin, the original developer of the app, transferred the maintenance OSMTracker to LabComún. Since then, LabComún has been managing the challenge of developing free software from a (global south) public university: scarcity of resources, bureaucratic difficulties, and how to align the process of developing software while offering a sustainable educational experience for students.\r\n\r\nThe ongoing focus of development of OSMTracker highlights the importance of engagement of undergrad computer science students in projects that are related to territories and people. This offers a real perspective on how their contributions to software could improve the quality of life. From a technical and academic perspective, the opportunity to be part of a bigger free software and open data community is unique.\r\n\r\nFinally, we want to open discussion on how to enhance the sustainability of OSMTracker, involving other actors in collaborations and keeping the app useful for thematic mapping projects.",
"speakers": [
"MC3GN8",
"PQBBQU"
],
"track": 5521,
"start": "2025-10-03T14:30:00+08:00",
"end": "2025-10-03T14:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.569945+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "TVAWMZ",
"id": 1350965,
"title": "Getting Started with QGIS: A Beginner's Guide to Mapping with Open-Source Tools",
"abstract": "This hands-on workshop is designed for beginners who are curious about Geographic Information Systems (GIS) and want to explore the power of open-source mapping through QGIS. Participants will be introduced to the fundamentals of GIS, the QGIS interface, and basic tools for creating, editing, and visualizing spatial data. The session will include a practical component where attendees will carry out a simple mapping task using real-world datasets. Whether you're a student, researcher, development professional, or simply GIS-curious, this workshop will equip you with the foundational skills to start your own mapping journey. No prior GIS experience required—just bring your curiosity!",
"speakers": [
"3D8BL8"
],
"track": 5517,
"start": "2025-10-03T14:30:00+08:00",
"end": "2025-10-03T15:30:00+08:00",
"room": 4378,
"duration": 60,
"updated": "2025-10-05T01:30:57.569925+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "H3NM7X",
"id": 1350967,
"title": "Mapping workflows in iD for new, intermediate and advanced mappers",
"abstract": "Mapping in iD is designed to be a welcoming experience that should require little to no required knowledge to get started. Additionally, the editor does also have some additional features up its sleave for more advanced mapping tasks. Regardless if you are a new, intermediate or advanced mapper: it can never hurt to know a trick or two that make your mapping more efficient!\r\n\r\nThis talk will go through common mapping workflows in iD and how they can elevate your mapping experience. There will be sections dedicated for beginners, intermediate and advanced mappers. For starters, it will be shown how one can get up to speed most efficiently with iD through its built-in walkthough and other help functionality. For intermediate mappers, the talk will cover topics such as photo-mapping, efficient use of keyboard shortcuts, integrated quality assurance tools, useful browser extensions, etc. The talk concludes with advanced techniques such as adding custom background imagery or map data.\r\n\r\nThe showcased mapping workflows shall give a good overview of the spectrum of different mapping tasks one might encounter as a mapper on an regular basis, and will also highlight tools other than iD that allow to dive even further into the respective topics.",
"speakers": [
"3LA7XB"
],
"track": 5516,
"start": "2025-10-03T15:00:00+08:00",
"end": "2025-10-03T15:40:00+08:00",
"room": 4376,
"duration": 40,
"updated": "2025-10-05T01:30:57.569965+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "78RJQL",
"id": 1350968,
"title": "Spatial BigQuery",
"abstract": "If you have lots of geom operations, but runtime will take >3 days maybe this could help",
"speakers": [],
"track": 6396,
"start": "2025-10-03T15:00:00+08:00",
"end": "2025-10-03T16:00:00+08:00",
"room": 4910,
"duration": 30,
"updated": "2025-10-05T01:30:57.569985+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1350969,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4376
},
{
"id": 1350973,
"title": {
"en": "Coffee break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4911
},
{
"id": 1350972,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4377
},
{
"id": 1350970,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4379
},
{
"id": 1350971,
"title": {
"en": "Coffee break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4910
},
{
"id": 1350974,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-03T08:00:00Z",
"end": "2025-10-03T16:30:00+08:00",
"room": 4378
},
{
"code": "KJPKWT",
"id": 1350978,
"title": "ORS-Tools - Beginner-friendly Mobility Analysis with OpenStreetMap and openrouteservice in QGIS",
"abstract": "**Turn OpenStreetMap data into routing insights** with openrouteservice and QGIS, no servers, no sign-ups, no code.\r\n\r\nIn this 60-minute hands-on session **for newcomers and intermediates**, you’ll:\r\n- **Sign up** to and connect the **ORS-Tools QGIS-plugin** with the public openrouteservice API\r\n- **Build multiprofile routes** around the SotM venue, **calculate hospital service areas** in Manila, and **solve a medicine delivery** to every of those hospitals **with** the help of easy to access **vehicle optimisation**.\r\n\r\nYou’ll walk away with a **reusable QGIS project**, a **tutorial**, and the confidence and knowledge to **repeat the workflow anywhere, anytime**.",
"speakers": [
"8RD9TG",
"E8WPXD",
"AHGNSW",
"FVRDEG"
],
"track": 5520,
"start": "2025-10-03T16:30:00+08:00",
"end": "2025-10-03T17:30:00+08:00",
"room": 4379,
"duration": 60,
"updated": "2025-10-05T01:30:57.570213+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "P3FWCW",
"id": 1350975,
"title": "Lightning Talks I",
"abstract": "## OSM Sound Demo\r\n_by Smallman (Taro)\r\n\r\n## ArcGIS Living Atlas of the World: Open Data Content\r\n_by Deniz Karagulle",
"speakers": [
"YNFKER"
],
"track": 5524,
"start": "2025-10-03T16:30:00+08:00",
"end": "2025-10-03T16:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570152+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "ABRBCZ",
"id": 1350977,
"title": "Birds of Feather/BoF Apo II",
"abstract": "Birds of a Feather sessions are spontaneous, self-organized sessions related to OpenStreetMap. This slot is still unassigned.\r\n\r\nYou can sign up for a self-organized session at the \"BoF\" white board at the conference venue.",
"speakers": [],
"track": 6396,
"start": "2025-10-03T16:30:00+08:00",
"end": "2025-10-03T17:35:00+08:00",
"room": 4375,
"duration": 30,
"updated": "2025-10-05T01:30:57.570193+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "QJRY8D",
"id": 1350976,
"title": "Cebu Mapathon",
"abstract": "Cebu Mapathon at State of the Map 2025 after the recent earthquake and its aftermath.",
"speakers": [
"HVGX3M",
"W8J3SL"
],
"track": 5517,
"start": "2025-10-03T16:30:00+08:00",
"end": "2025-10-03T17:35:00+08:00",
"room": 4378,
"duration": 60,
"updated": "2025-10-05T01:30:57.570173+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "8KKLCS",
"id": 1350979,
"title": "Resilience Starts with a Map: Community-Led OSM Action in Dhaka’s Climate-Vulnerable Settlements",
"abstract": "Dhaka, one of the most climate-affected cities in South Asia, is home to millions of migrants living in informal urban settlements. These densely populated areas are increasingly exposed to environmental and health hazards, particularly seasonal waterlogging and recurring dengue outbreaks. Despite the severity of these issues, many of these settlements remain underrepresented in official datasets, limiting the ability to implement targeted and effective resilience measures.\r\n\r\nAs part of our Capstone Project under the Climate Resilience Fellowship (CRF), this initiative leveraged OpenStreetMap (OSM) to conduct a community-led, GIS-based multi-hazard assessment in some of Dhaka’s most climate-vulnerable settlements. Our work followed a two-phase approach:\r\n\r\nField-based data collection and mapping, where youth and women from local communities actively identified water accumulation zones and dengue breeding hotspots using OSM tools.\r\n\r\nAwareness building and local preparedness activities, using the mapped data to facilitate community dialogues and promote action for health and disaster resilience.\r\n\r\nThrough this participatory mapping effort, we not only generated critical geospatial data but also strengthened local capacity to respond to climate and health risks. OSM served as both a data platform and a tool for empowerment, enabling residents to visualize their vulnerabilities and advocate for solutions.\r\n\r\nThis talk will showcase how open mapping, when integrated with community engagement and local knowledge, can effectively support disaster risk reduction, public health planning, and climate adaptation in marginalized urban areas. We will also reflect on the potential for replicating this model in other cities facing similar climate and health challenges.",
"speakers": [
"RHFS88"
],
"track": 5521,
"start": "2025-10-03T17:00:00+08:00",
"end": "2025-10-03T17:15:00+08:00",
"room": 4376,
"duration": 15,
"updated": "2025-10-05T01:30:57.570233+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "8KQRCY",
"id": 1350980,
"title": "Platinum Sponsor Session: OSM Data for Two-Wheelers and Safety",
"abstract": "This talk delves into the unique challenges and opportunities of enhancing OpenStreetMap (OSM) data for two-wheeler routing and safety. Two-wheelers are a vital mode of transportation within SEA, yet their safety needs are often overlooked. \r\n\r\nDrawing from our experience in building and contributing enriched safety data back to OSM, we explore how attributes like lighting conditions, speed bumps, and pothole assessments can make navigation safer and more efficient for two-wheelers.\r\n\r\nThrough this talk, we aim to inspire the OSM community to prioritize safety attributes for improving map data quality for two-wheelers.",
"speakers": [
"3MVE8V"
],
"track": 6311,
"start": "2025-10-03T17:00:00+08:00",
"end": "2025-10-03T17:15:00+08:00",
"room": 4377,
"duration": 15,
"updated": "2025-10-05T01:30:57.570253+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "TZNMJG",
"id": 1350981,
"title": "Platinum Sponsor Session: From Edits to Impact - TomTom’s Journey with OpenStreetMap Communities",
"abstract": "TomTom partners with OSM communities worldwide to build richer maps through collective action. In this SotM Global event 2025, we share how we support university mapathons, YouthMappers, and humanitarian mapping in 189 countries, reflecting on learnings and challenges in scaling community engagement while advancing OSM’s mission through meaningful, local partnerships.",
"speakers": [
"SWWSGH",
"RAV9PX"
],
"track": 6311,
"start": "2025-10-03T17:20:00+08:00",
"end": "2025-10-03T17:35:00+08:00",
"room": 4377,
"duration": 15,
"updated": "2025-10-05T01:30:57.570273+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "RUCRPS",
"id": 1350982,
"title": "Addressing Participation Gaps in Nepal’s OSM Ecosystem: Strategies for Long-Term Community Retention",
"abstract": "Nepal’s OpenStreetMap (OSM) community is currently experiencing a noticeable decline in active participation and long-term engagement. While the ecosystem once thrived on regionally supported events and student-led enthusiasm, it now faces a rise in passive contributors and a lack of continuity in mapping efforts. This trend is particularly concerning in a context like Nepal, where access to reliable and up-to-date geospatial data remains limited, and OSM presents a valuable, open-source alternative for inclusive mapping and data democratisation. A key factor contributing to this decline is the narrow framing of OSM as a repetitive editing platform, often reinforced by conventional training sessions that overlook the broader creative and applied potential of the tool. Innovative and accessible platforms such as Mapillary, MapSwipe, and OSM-based design tools—which can make mapping more engaging and relevant to everyday challenges—are rarely introduced or integrated into learning experiences. Drawing on my own experience organising initiatives such as the OSM Hackfest and thematic map design based on OSM dataset competitions, I have witnessed how student engagement can be restored when OSM is presented not just as an editing tool but as a gateway to problem-solving in urban planning, disaster resilience, and many more potentials of the OSM datasets. More importantly, there is a need for advocacy for a shift in narrative: from simply contributing data to understanding the importance of OSM and utilising it. By embedding OSM awareness from the student level to policymaking stakeholders, Nepal can foster a resilient and self-sustaining mapping ecosystem.",
"speakers": [
"JFZ9JE"
],
"track": 5522,
"start": "2025-10-03T17:20:00+08:00",
"end": "2025-10-03T17:35:00+08:00",
"room": 4376,
"duration": 15,
"updated": "2025-10-05T01:30:57.570293+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "JUSRXF",
"id": 1350984,
"title": "OpenStreetMap x Wikidata Collaboration: Taiwan Case",
"abstract": "Not only NSI, but Wikidata can be integrated with OpenStreetMap, and vice versa! Many years ago, with the help of Wikidata Taiwan, OpenStreetMap Taiwan has mapped all 7,000 villages, and also cross-linked to Wikidata. We also have a similar river project of mapping all rivers in Taiwan and crosslinking to Wikidata with the help of the river code published by the Taiwan government. In this talk, we want to further talk about the school, mountain, church, temple, and hiking trail mapping projects, which also have the corresponding external 3rd-party Wikidata property. We will also describe the process like documenting and tools involved",
"speakers": [
"DWDVZS"
],
"track": 5517,
"start": "2025-10-04T09:30:00+08:00",
"end": "2025-10-04T09:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570333+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "P8MPHS",
"id": 1350983,
"title": "Lessons from teaching OpenStreetMap in a masters program",
"abstract": "Teaching with OpenStreetMap has mostly been focused at the high school and undergraduate levels. In this presentation, I will share my experience of integrating OpenStreetMap into a professional graduate program, the Master of Geomatics for Environmental Management at the University of British Columbia. We will look at some of the opportunities for teaching with OpenStreetMap at the graduate-level, identify some of the challenges with teaching natural resource management with OpenStreetMap, and consider some broader implications for incorporating OpenStreetMap into graduate education. Finally, I will share some open educational resource lesson plans for teaching with OpenStreetMap that can be adapted for your classroom.",
"speakers": [
"GZKADJ"
],
"track": 5526,
"start": "2025-10-04T09:30:00+08:00",
"end": "2025-10-04T09:50:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570313+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "8F3JWB",
"id": 1350985,
"title": "From Maps to Models: Building AI Context Tools for OpenStreetMap",
"abstract": "OpenStreetMap (OSM) is the most comprehensive open-source geospatial database in the world—but as it continues to grow, the tools for understanding and managing this data need to evolve as well. In this workshop, we explore how AI, when thoughtfully integrated with OSM workflows, can offer intelligent, context-aware support to mappers and developers alike.\r\n\r\nThis session introduces participants to the Model Context Protocol (MCP)—a lightweight, structured format for embedding task-specific context into AI interactions. MCP allows for the creation of prompts and workflows that are reproducible, local-first, and aware of the mapping domain. Using this protocol, we will build a proof-of-concept tool that uses open-source large language models (LLMs) to interpret OSM data and assist with mapping tasks, such as tag validation, feature classification, and geospatial query answering.\r\n\r\nImportantly, the workshop focuses on privacy-respecting, open-source solutions. All AI tools used will run locally on participant machines, avoiding any reliance on commercial APIs or user-tracking platforms. This aligns with the ethos of the OSM and open-data communities, ensuring participants can experiment with powerful AI without compromising control or transparency.\r\n\r\nAttendees will gain practical skills in working with Overpass API to extract OSM data, creating MCP-compliant prompts, running local LLMs via tools like LM Studio or Ollama, and designing AI agents that enhance mapping workflows. No prior experience with AI is required—just a curiosity for what happens when maps meet models.",
"speakers": [
"X8FQNA",
"FYBBQU"
],
"track": 5519,
"start": "2025-10-04T09:30:00+08:00",
"end": "2025-10-04T10:30:00+08:00",
"room": 4378,
"duration": 60,
"updated": "2025-10-05T01:30:57.570353+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "MTS9TS",
"id": 1350986,
"title": "The Ugandan Geo Quests: Mapping Libraries and Museums into the Knowledge Commons",
"abstract": "Across Uganda, countless community libraries and local museums hold untold stories, cultural memory, and untapped knowledge—but remain invisible on the digital map. The Ugandan Geo Quests project aims to change that.\r\n\r\nThis session introduces two complementary national mapping initiatives: The Ugandan Libraries Geo Quest and The Ugandan Museums Geo Quest, which leverage OpenStreetMap, Wikidata, and Wikipedia to bring local knowledge institutions into the global digital commons.\r\n\r\nWe’ll explore how we:\r\n\r\nMobilized local communities, Wikimedians, and mappers for participatory documentation\r\nUsed tools like uMap, ODK Collect and KoboToolbox to ensure data quality and visibility\r\nLinked OSM data with Wikidata and Wikipedia for multi-platform discoverability\r\nAddressed challenges around verification, tagging, and sustainability\r\n\r\nAttendees will gain insights into designing thematic mapping campaigns that go beyond infrastructure—to elevate culture, education, and heritage in open data ecosystems. Whether you're a mapper, librarian, or advocate for digital equity, this session offers inspiration on how maps can preserve identity and empower communities.",
"speakers": [
"QVKVCR"
],
"track": 5517,
"start": "2025-10-04T10:00:00+08:00",
"end": "2025-10-04T10:20:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570373+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "NVHF3U",
"id": 1350987,
"title": "Lightning Talks II",
"abstract": "## Utilizing OSM with QGIS\r\n_by Ariel Dome_\r\n\r\n## Open Mapping potential in Jakarta Metropolitan: Case of Mappilary Capture in Depok City\r\n_by Yabes Butar Butar_\r\n\r\n## People data tracing movement with GPS\r\n_by CJ Capuli_\r\n\r\n## All of five km\r\n_by Ewen Hill_",
"speakers": [
"YNFKER"
],
"track": 5524,
"start": "2025-10-04T10:30:00+08:00",
"end": "2025-10-04T10:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570392+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1350989,
"title": {
"en": "Coffee break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4911
},
{
"id": 1350988,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4377
},
{
"id": 1350992,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4375
},
{
"id": 1350991,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4376
},
{
"id": 1350990,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4379
},
{
"id": 1350994,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4378
},
{
"id": 1350993,
"title": {
"en": "Coffee break"
},
"start": "2025-10-04T03:00:00Z",
"end": "2025-10-04T11:30:00+08:00",
"room": 4910
},
{
"code": "VTGCCY",
"id": 1350995,
"title": "Community-Driven Data: How Local Knowledge is Reshaping Urban Waste Systems",
"abstract": "Effective urban solid waste management in African cities remains a critical challenge characterized by rapid urbanization, limited infrastructure, and insufficient data. Traditional top-down approaches often fail to address the unique, hyperlocal realities of waste generation, disposal behaviors, and service gaps. This presentation explores how OpenMap Development Tanzania (OMDTZ) with the funds from the World Bank, has implemented community-driven data collection approaches in Tanzania, Mozambique, and Kenya to fill this knowledge gap and build more responsive, inclusive waste management systems.\r\n\r\nThrough the integration of OpenStreetMap (OSM), mobile data tools like OpenDataKit, OsmAnd, and participatory mapping techniques, communities have been engaged in mapping informal waste collection points, illegal dumping sites, transfer stations, and service coverage areas. By centering local knowledge, these projects have produced actionable geospatial data that informs city-level planning, supports environmental health interventions, and amplifies citizen voices in waste governance.\r\nParticipants will gain insights into how grassroots data collection not only improves the quality of open data but also reshapes power dynamics in urban planning, placing communities at the forefront of building cleaner, more sustainable cities.",
"speakers": [
"AB9QXF"
],
"track": 5517,
"start": "2025-10-04T11:30:00+08:00",
"end": "2025-10-04T11:50:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570579+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "WKU97L",
"id": 1350997,
"title": "Managing Remote Mapping Projects in the HOT Tasking Manager",
"abstract": "In this 60-minute workshop, I will share my approach and personal workflow in managing remote mapping projects using the HOT Tasking Manager. Tailored for those with Project Manager access, yet open to all, the session aims to highlight real-world methods of setting up priority areas with limited ground data, responding effectively to volunteer feedback, and writing clear, actionable task instructions. I will also present an idea for forming temporary validator teams (not yet implemented), and openly share the challenges and pain points I’ve faced in these roles. The workshop is not about presenting a perfect solution, but about learning together and collecting ideas for continuous improvement.",
"speakers": [
"UUU9VM"
],
"track": 5517,
"start": "2025-10-04T11:30:00+08:00",
"end": "2025-10-04T12:30:00+08:00",
"room": 4378,
"duration": 60,
"updated": "2025-10-05T01:30:57.570619+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "N89YSU",
"id": 1350996,
"title": "How to Complete Japan’s Building Mapping in One Year? Strategies for Integrating PLATEAU Data into OSM",
"abstract": "Since 2020, Japan’s Ministry of Land, Infrastructure, Transport and Tourism (MLIT) has led Project PLATEAU, releasing 3D city models in CityGML format. By 2025, over 236 municipalities have published building datasets compatible with the Open Database License (ODbL), suitable for integration into OpenStreetMap (OSM).\r\n\r\nSince 2022, OpenStreetMap Japan volunteers have imported PLATEAU’s Level of Detail 1 (LOD1) building data into OSM, completing imports for 13 cities as of May 2025. Despite these efforts, only about 62% of Japan’s estimated 38 million building polygons are mapped in OSM.\r\n\r\nThis presentation proposes a roadmap to complete Japan’s building mapping within one year, focusing on optimizing PLATEAU data imports, ensuring data consistency, and strengthening community collaboration.",
"speakers": [
"EDWH9Q"
],
"track": 5517,
"start": "2025-10-04T11:30:00+08:00",
"end": "2025-10-04T11:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570599+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "3HRTVP",
"id": 1350999,
"title": "fAIrSwipe",
"abstract": "This project aims to combine AI‐generated building predictions from fAIr with crowdsourced validation and conflation workflows in MapSwipe, ultimately pushing high‐confidence conflated map data into OpenStreetMap (OSM).\r\nfAIr is an AI‐powered mapping assistant by HOT that helps users map smarter, faster, and more accurately.\r\nMapSwipe is a crowdsourcing app that lets volunteers validate or identify features (e.g. buildings) quickly on satellite imagery.\r\n\r\nObjectives\r\n- Automate the creation of MapSwipe projects from fAIr (with building predictions, TMS layers, etc.).\r\n- Validate AI‐predicted features via MapSwipe’s volunteer workflow via redundancy.\r\n- Conflate validated features with existing OSM data.\r\n- Upload conflated data back to OSM in a controlled, conflict‐aware manner.\r\n- Provide feedback to improve fAIr's AI models based on volunteer validation results and possibly task the tasking manager to manually map the parts that are difficult to validate via MapSwipe.",
"speakers": [
"ZWUBL3"
],
"track": 5519,
"start": "2025-10-04T12:00:00+08:00",
"end": "2025-10-04T12:20:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570658+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "8VMYYW",
"id": 1350998,
"title": "~Translation and Mapathons~ Building Open Mapping Education by Students; A YouthMappers Student Project from Furuhashi Lab, Japan",
"abstract": "This talk introduces a student-led initiative from the Furuhashi Lab at Aoyama Gakuin University in Japan, focusing on the localization of global open mapping knowledge. As a YouthMappers chapter, we are currently translating the open-access book Open Mapping towards Sustainable Development Goals into Japanese. The aim of this translation project is to make critical mapping knowledge accessible to non-English-speaking students and to encourage greater participation in the open mapping community.\r\n\r\nRecognizing the importance of engaging peers through action, we organized our first online Mapathon in early 2025. This event helped beginner mappers gain hands-on experience and fostered a sense of community among participants. Building on its success, we are now planning a collaborative inter-university Mapathon scheduled for July 2025, with the goal of expanding our network and impact across academic institutions in Japan.\r\n\r\nIn this talk, we will share insights from managing the translation workflow, including how we divided chapters, ensured consistency in technical vocabulary, and utilized collaborative tools such as GitHub for version control. We will also reflect on our outreach efforts—how we communicated the value of open mapping to our peers and engaged them in both the translation and mapping processes.\r\n\r\nThrough this project, we aim to empower students with the knowledge and tools needed to contribute to global development goals through geospatial technologies. Ultimately, our initiative highlights the potential of youth-driven efforts to strengthen open mapping education and build inclusive communities, even in regions where English is not the primary language.",
"speakers": [
"8L9AVU"
],
"track": 5526,
"start": "2025-10-04T12:00:00+08:00",
"end": "2025-10-04T12:20:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570638+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "TX88WD",
"id": 1351001,
"title": "Making OpenStreetMap More Accessible for New Mappers",
"abstract": "OpenStreetMap (OSM) has become one of the most valuable open mapping platforms, yet many aspiring contributors struggle with the initial learning curve. Technical complexities, lack of structured on boarding, and limited localized training resources often prevent new mappers from fully engaging with OSM. This talk will highlight key challenges faced by beginners and propose practical solutions to make OSM more accessible and inclusive.\r\n\r\nDrawing from my experience as an Open Mapping Guru, a YouthMappers leader, and a trainer with the Open Mapping Hub - Asia Pacific, I will discuss effective strategies for on boarding new contributors. These include localized training resources, mentorship programs, and simplified tool introductions. By addressing these gaps, we can empower a more diverse community to participate actively in open mapping.",
"speakers": [
"ZNVRYC"
],
"track": 5522,
"start": "2025-10-04T12:30:00+08:00",
"end": "2025-10-04T12:50:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570709+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "ABLRCG",
"id": 1351000,
"title": "World-Map-Explorer – Explore the world with ease",
"abstract": "World-Map-Explorer is a web application that helps the visually impaired learn about the world and understand maps. It is a great pleasure to note that the application was developed by a group of students from the Computer Science Department of Sri Krishnapuram Government Engineering College in collaboration with Zendalona with support of OpenStreetMap Kerala Community.\r\n\r\nThis app, which can be used by both the visually impaired and the sighted, is based on the free software OpenStreetMap. This app describes the world based on audio cues with the help of a screen reader. Existing applications like Google Maps cannot be used with a keyboard. Therefore, the visually impaired cannot use map applications. They understand the structure of areas by swiping their hands through the lines and dots that stand out on the tactile map. They understand where a place is by waving their hands over the place name written in Braille.",
"speakers": [
"9XPWYG"
],
"track": 5519,
"start": "2025-10-04T12:30:00+08:00",
"end": "2025-10-04T12:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570678+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1351008,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4377
},
{
"id": 1351007,
"title": {
"en": "Lunch break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4910
},
{
"id": 1351003,
"title": {
"en": "Lunch break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4911
},
{
"id": 1351005,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4375
},
{
"id": 1351006,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4378
},
{
"id": 1351002,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4379
},
{
"id": 1351004,
"title": {
"en": "Lunch Break"
},
"start": "2025-10-04T05:00:00Z",
"end": "2025-10-04T14:30:00+08:00",
"room": 4376
},
{
"code": "MM8TEB",
"id": 1351009,
"title": "Mapping for Impact: Introducing Open Mapping to Civil Society in Sri Lanka",
"abstract": "The open mapping movement in Sri Lanka has gained significant traction in recent years, with grassroots organizations demonstrating how open geospatial technologies can serve as tools for advocacy, resilience, and participatory governance. Supported by the Vriddhi Project, implemented by UNOPS Sri Lanka, this initiative introduced OpenStreetMap (OSM) and complementary open-source geospatial tools to 113 civil society organizations (CSOs) in Sri Lanka. These CSOs represented diverse sectors including women’s rights, land rights, environmental protection, youth development and disaster risk reduction.\r\n\r\nThe approach was structured around four pillars. Initiation and Engagement examined how the unfamiliar concept of open mapping was contextualized in local languages, building trust and digital confidence among grassroots actors. Capacity Building and Toolkits focused on the design of non-technical training modules and the deployment of user-friendly tools that directly informed local advocacy. Challenges and Lessons Learned highlighted issues of digital inequality, connectivity gaps, institutional skepticism, and gendered barriers to participation, while also reflecting on strategies to sustain momentum in remote and conflict-affected areas. Outcomes and Impact showcased case studies, including mapping project outcomes, visualizing land disputes, and documenting community assets, demonstrating how open mapping enhanced transparency, collaboration, and storytelling across civil society initiatives.\r\n\r\nBy embedding open mapping practices into grassroots workflows, this project illustrates the transformative potential of locally driven geospatial innovation. It further underscores the critical role of civil society in advancing open data ecosystems and sustaining participatory development in South Asia.",
"speakers": [
"3D8BL8"
],
"track": 5522,
"start": "2025-10-04T14:30:00+08:00",
"end": "2025-10-04T14:50:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570897+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "LV9MRX",
"id": 1351011,
"title": "Beyond the Binary: Gender, Language, and Representation in Open Mapping",
"abstract": "OpenStreetMap (OSM) thrives on teamwork and the desire to accurately depict the globe. Nonetheless, within its contributor base, gender disparities still exist. In addition to reflecting larger cultural trends, this underrepresentation affects the type of data gathered and the viewpoints given priority. \r\n\r\nMappers, community organizers, and advocates get together on this topic to explore various aspects of gender in the OSM ecosystem. The workshop will highlight initiatives to promote diversity, talk about how cultural norms affect participation, and share personal experiences navigating gendered expectations. We will look into issues like: What are the ways in which mapping communities exhibit binary gender assumptions? What aspects of gender are influenced by linguistic and cultural contexts? In what ways can we establish environments that embrace a range of gender identities?\r\n\r\nBy examining these questions, the workshop aims to:\r\n• Draw attention to the difficulties that underrepresented genders in OSM confront. \r\n• Discuss ways to encourage equal participation and combat gender biases. \r\n• Promote the use of inclusive terminology and methods in mapping projects. \r\n\r\nThose working on diversity projects, community participation, and the creation of mapping tools and policies may find this conversation very relevant. Participants will get knowledge about creating an OSM community that is more inclusive and celebrates the diversity of its members.",
"speakers": [
"7CTNQV",
"JBAK7J",
"YBESUB"
],
"track": 5522,
"start": "2025-10-04T14:30:00+08:00",
"end": "2025-10-04T15:30:00+08:00",
"room": 4378,
"duration": 60,
"updated": "2025-10-05T01:30:57.570938+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "CBMXL3",
"id": 1351010,
"title": "Journey to the Center of the Planet",
"abstract": "Whether you’re a simple mapper or a sophisticated data consumer, you depend on a lot of machinery at the heart of OpenStreetMap that you probably never think about. After many years mapping and tinkering on OSM-based frontend applications, Minh is venturing into the software core of OSM’s world. Join him as he recounts his travels, unearthing the many moving parts beneath the surface and piecing together how they fit into the larger constellation of OSM software. Get a glimpse of the future of this software stack as we invest in development resources and make progress on longstanding priorities – and how you can help.",
"speakers": [
"FGMQNF"
],
"track": 5519,
"start": "2025-10-04T14:30:00+08:00",
"end": "2025-10-04T14:50:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570917+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "PGAYVT",
"id": 1351012,
"title": "Introduction to JOSM and some plugins",
"abstract": "This training session will show how to get started with JOSM editor from the very first steps after installation to some plugins and advanced features which makes it different from iD Editor.\r\nThe session will go through the following topics:\r\n- Initial settings after JOSM download\r\n- Basic editing modes in JOSM, how to change imagery, align it to the data, etc.\r\n- How to download plugins in JOSM to enhance its functionalities\r\n- Usage of plugins: utils, buildings, open_data, FastDraw, ToDo, revert. Some of these plugins are to map better and faster, while others are to perform validation of data\r\n- JOSM queries to selected OSM data (very useful for validation)\r\n\r\nThe ideal participant to the session is a mapper that has some knowledge of OSM editing, always used iD editor and would like to get some exposure to JOSM to be able to perform some advanced mapping, or just explore it further. If that is you, do not hesitate to participate!\r\nIt is necessary for participants to bring their own laptop and mouse with JOSM already downloaded, possibly to the latest tested version which can be found here: https://josm.openstreetmap.de/wiki/Download.",
"speakers": [
"BCLAGF"
],
"track": 5517,
"start": "2025-10-04T14:30:00+08:00",
"end": "2025-10-04T15:30:00+08:00",
"room": 4379,
"duration": 60,
"updated": "2025-10-05T01:30:57.570958+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "GQKLBA",
"id": 1351014,
"title": "Overpass Turbo goes PostGIS",
"abstract": "This talks presents the \"Postpass\" service, a database that services OSM data for public querying much like Overpass, but uses PostGIS under the hood. With a few extra characters added to your query, you can have the power of PostGIS at your fingertips from within Overpass Turbo.",
"speakers": [
"9GGAN8"
],
"track": 5520,
"start": "2025-10-04T15:00:00+08:00",
"end": "2025-10-04T15:20:00+08:00",
"room": 4376,
"duration": 20,
"updated": "2025-10-05T01:30:57.570999+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"code": "YHRMZM",
"id": 1351013,
"title": "Women Who Map: My Mission to Build Inclusive Mapping Communities in Nepal",
"abstract": "Building a strong and inclusive mapping community requires leadership, collaboration and a vision that aligns with global geospatial initiatives. As an Om Guru Advanced Mapper, Kathmandu University YouthMappers President and Executive Member & Sole Mapping Lead of Geomatics Engineering Society (GES) for tenure 2025, I have worked extensively to expand Nepal’s OpenStreetMap (OSM) ecosystem, integrating engineering students, women and interdisciplinary contributors into mapping projects. My leadership has helped grow female mappers and transform the local community into university-level, being in the geospatial field, focused on women to lead mapping and running monthly campaigns across the country, ensuring greater inclusivity and technical engagement. In April 2025, I single-handedly organized Mapping Week 2025, an open mapping initiative held across Kathmandu University. This program featured 9 distinct open-source mapping applications, more than 12 national and international trainers and a range of community engagement activities including mapathons, quizzes and interactive workshops. The result? A historic rise in female participation and the expansion of mapping interest across university that previously had little exposure to OSM.\r\nMy talk focuses on how OpenStreetMap can be a tool for technical training, empowerment, inclusion and leadership development. I will reflect on the process of forming KU YouthMappers, expanding beyond a departmental club into a university-wide, multidisciplinary chapter. I will also explore challenges we faced when breaking academic silos, how we sustained motivation among new mappers and strategies that ensured our efforts aligned with OSMF’s larger mission.\r\nThis session will demonstrate building inclusive and gender-aware communities using open tools like ID editors and JOSM. It also aims to show the potential of young leaders, especially women, in shaping the future of mapping movements in underrepresented regions like Nepal. My ultimate goal is to highlight how ‘Women Who Map’ can be pioneers of change both locally and globally.",
"speakers": [
"3UNRQL"
],
"track": 5522,
"start": "2025-10-04T15:00:00+08:00",
"end": "2025-10-04T15:20:00+08:00",
"room": 4377,
"duration": 20,
"updated": "2025-10-05T01:30:57.570978+00:00",
"state": null,
"content_locale": "en",
"do_not_record": null
},
{
"id": 1351021,
"title": {
"en": "Coffee break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4911
},
{
"id": 1351016,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4379
},
{
"id": 1351018,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4377
},
{
"id": 1351015,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4375
},
{
"id": 1351020,
"title": {
"en": "Coffee break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4910
},
{
"id": 1351019,
"title": {
"en": "Coffee Break"
},
"start": "2025-10-04T07:30:00Z",
"end": "2025-10-04T16:00:00+08:00",
"room": 4376
},
{
"id": 1351017,
"title": {
"en": "Coffee Break"
},