-
Notifications
You must be signed in to change notification settings - Fork 5
/
navigation.conf
1407 lines (1113 loc) · 19.6 KB
/
navigation.conf
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
# navigation.conf
#
# hope this configuration file is self-explantory
#
# multiple section of same type of drawing is allowed, but the section must
# postfixed with _xxx to differential itself
#
# navigator.py currently read following sections:
# gpsd-server
# center
# quadrangle_
# line_
# point_
[gpsd-server]
host = 127.0.0.1
port = 2947
[center]
lon = 121.2
lat = 30.5
[quadrangle_0]
# points in lon, lat
color = 1, 0.7, 0.3, 1
SW = 122.48, 31.0
SE = 122.95, 31.3
NE = 122.95, 31.8
NW = 122.48, 31.5
# hello world
[line_ax1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 123.700000, 29.200000
end = 123.700000, 31.000000
[line_ax3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 125.500000, 29.200000
end = 125.500000, 31.000000
[line_ax5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 123.700000, 30.000000
end = 125.500000, 30.000000
[line_bx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 126.700000, 31.000000
end = 128.500000, 31.000000
[line_bx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 126.700000, 30.000000
end = 128.500000, 30.000000
[line_bx5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 126.700000, 29.200000
end = 128.500000, 29.200000
[line_bx7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 126.700000, 29.200000
end = 126.700000, 31.000000
[line_cx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 129.700000, 29.200000
end = 129.700000, 31.000000
[line_cx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 129.700000, 29.200000
end = 131.500000, 29.200000
[line_dx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 132.700000, 29.200000
end = 132.700000, 31.000000
[line_dx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 132.700000, 29.200000
end = 134.500000, 29.200000
[line_ex1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 135.700000, 29.200000
end = 137.500000, 29.200000
[line_ex3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 137.500000, 29.200000
end = 137.500000, 31.000000
[line_ex5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 137.500000, 31.000000
end = 135.700000, 31.000000
[line_ex7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 135.700000, 31.000000
end = 135.700000, 29.200000
[line_fx1x0]
color = 0, 0, 0, 1.0
start = 138.700000, 29.200000
end = 140.500000, 29.200000
[line_gx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 141.700000, 31.000000
end = 142.100000, 29.200000
[line_gx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 142.100000, 29.200000
end = 142.500000, 31.000000
[line_gx5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 142.500000, 31.000000
end = 143.100000, 29.200000
[line_gx7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 143.100000, 29.200000
end = 143.500000, 31.000000
[line_hx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 144.700000, 29.200000
end = 146.500000, 29.200000
[line_hx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 146.500000, 29.200000
end = 146.500000, 31.000000
[line_hx5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 146.500000, 31.000000
end = 144.700000, 31.000000
[line_hx7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 144.700000, 31.000000
end = 144.700000, 29.200000
[line_ix1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 147.700000, 30.000000
end = 149.500000, 30.000000
[line_ix3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 149.500000, 30.000000
end = 149.500000, 31.000000
[line_ix5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 149.500000, 31.000000
end = 147.700000, 31.000000
[line_ix7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 147.700000, 31.000000
end = 147.700000, 30.000000
[line_ix9x8]
color = 1.0, 0.2, 0.5, 1.0
start = 147.700000, 30.000000
end = 147.700000, 29.200000
[line_ix11x10]
color = 1.0, 0.2, 0.5, 1.0
start = 147.700000, 30.000000
end = 149.500000, 29.200000
[line_jx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 150.700000, 29.200000
end = 150.700000, 31.000000
[line_jx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 150.700000, 29.200000
end = 152.500000, 29.200000
[line_kx1x0]
color = 1.0, 0.2, 0.5, 1.0
start = 153.700000, 29.200000
end = 155.500000, 29.600000
[line_kx3x2]
color = 1.0, 0.2, 0.5, 1.0
start = 155.500000, 29.600000
end = 155.500000, 30.600000
[line_kx5x4]
color = 1.0, 0.2, 0.5, 1.0
start = 155.500000, 30.600000
end = 153.700000, 31.000000
[line_kx7x6]
color = 1.0, 0.2, 0.5, 1.0
start = 153.700000, 31.000000
end = 153.700000, 29.200000
[line_0]
color = 0, 1, 1, 1
start = 122.482114, 31.001349
end = 122.482114, 31.501349
[line_1]
color = 0, 1, 1, 1
start = 122.486341, 31.004047
end = 122.486341, 31.504047
[line_2]
color = 0, 1, 1, 1
start = 122.490568, 31.006746
end = 122.490568, 31.506746
[line_3]
color = 0, 1, 1, 1
start = 122.494795, 31.009444
end = 122.494795, 31.509444
[line_4]
color = 0, 1, 1, 1
start = 122.499022, 31.012142
end = 122.499022, 31.512142
[line_5]
color = 0, 1, 1, 1
start = 122.503250, 31.014840
end = 122.503250, 31.514840
[line_6]
color = 0, 1, 1, 1
start = 122.507477, 31.017538
end = 122.507477, 31.517538
[line_7]
color = 0, 1, 1, 1
start = 122.511704, 31.020237
end = 122.511704, 31.520237
[line_8]
color = 0, 1, 1, 1
start = 122.515931, 31.022935
end = 122.515931, 31.522935
[line_9]
color = 0, 1, 1, 1
start = 122.520158, 31.025633
end = 122.520158, 31.525633
[line_10]
color = 0, 1, 1, 1
start = 122.524386, 31.028331
end = 122.524386, 31.528331
[line_11]
color = 0, 1, 1, 1
start = 122.528613, 31.031029
end = 122.528613, 31.531029
[line_12]
color = 0, 1, 1, 1
start = 122.532840, 31.033728
end = 122.532840, 31.533728
[line_13]
color = 0, 1, 1, 1
start = 122.537067, 31.036426
end = 122.537067, 31.536426
[line_14]
color = 0, 1, 1, 1
start = 122.541294, 31.039124
end = 122.541294, 31.539124
[line_15]
color = 0, 1, 1, 1
start = 122.545522, 31.041822
end = 122.545522, 31.541822
[line_16]
color = 0, 1, 1, 1
start = 122.549749, 31.044521
end = 122.549749, 31.544521
[line_17]
color = 0, 1, 1, 1
start = 122.553976, 31.047219
end = 122.553976, 31.547219
[line_18]
color = 0, 1, 1, 1
start = 122.558203, 31.049917
end = 122.558203, 31.549917
[line_19]
color = 0, 1, 1, 1
start = 122.562430, 31.052615
end = 122.562430, 31.552615
[line_20]
color = 0, 1, 1, 1
start = 122.566658, 31.055313
end = 122.566658, 31.555313
[line_21]
color = 0, 1, 1, 1
start = 122.570885, 31.058012
end = 122.570885, 31.558012
[line_22]
color = 0, 1, 1, 1
start = 122.575112, 31.060710
end = 122.575112, 31.560710
[line_23]
color = 0, 1, 1, 1
start = 122.579339, 31.063408
end = 122.579339, 31.563408
[line_24]
color = 0, 1, 1, 1
start = 122.583566, 31.066106
end = 122.583566, 31.566106
[line_25]
color = 0, 1, 1, 1
start = 122.587794, 31.068804
end = 122.587794, 31.568804
[line_26]
color = 0, 1, 1, 1
start = 122.592021, 31.071503
end = 122.592021, 31.571503
[line_27]
color = 0, 1, 1, 1
start = 122.596248, 31.074201
end = 122.596248, 31.574201
[line_28]
color = 0, 1, 1, 1
start = 122.600475, 31.076899
end = 122.600475, 31.576899
[line_29]
color = 0, 1, 1, 1
start = 122.604702, 31.079597
end = 122.604702, 31.579597
[line_30]
color = 0, 1, 1, 1
start = 122.608930, 31.082296
end = 122.608930, 31.582296
[line_31]
color = 0, 1, 1, 1
start = 122.613157, 31.084994
end = 122.613157, 31.584994
[line_32]
color = 0, 1, 1, 1
start = 122.617384, 31.087692
end = 122.617384, 31.587692
[line_33]
color = 0, 1, 1, 1
start = 122.621611, 31.090390
end = 122.621611, 31.590390
[line_34]
color = 0, 1, 1, 1
start = 122.625838, 31.093088
end = 122.625838, 31.593088
[line_35]
color = 0, 1, 1, 1
start = 122.630066, 31.095787
end = 122.630066, 31.595787
[line_36]
color = 0, 1, 1, 1
start = 122.634293, 31.098485
end = 122.634293, 31.598485
[line_37]
color = 0, 1, 1, 1
start = 122.638520, 31.101183
end = 122.638520, 31.601183
[line_38]
color = 0, 1, 1, 1
start = 122.642747, 31.103881
end = 122.642747, 31.603881
[line_39]
color = 0, 1, 1, 1
start = 122.646974, 31.106579
end = 122.646974, 31.606579
[line_40]
color = 0, 1, 1, 1
start = 122.651202, 31.109278
end = 122.651202, 31.609278
[line_41]
color = 0, 1, 1, 1
start = 122.655429, 31.111976
end = 122.655429, 31.611976
[line_42]
color = 0, 1, 1, 1
start = 122.659656, 31.114674
end = 122.659656, 31.614674
[line_43]
color = 0, 1, 1, 1
start = 122.663883, 31.117372
end = 122.663883, 31.617372
[line_44]
color = 0, 1, 1, 1
start = 122.668111, 31.120071
end = 122.668111, 31.620071
[line_45]
color = 0, 1, 1, 1
start = 122.672338, 31.122769
end = 122.672338, 31.622769
[line_46]
color = 0, 1, 1, 1
start = 122.676565, 31.125467
end = 122.676565, 31.625467
[line_47]
color = 0, 1, 1, 1
start = 122.680792, 31.128165
end = 122.680792, 31.628165
[line_48]
color = 0, 1, 1, 1
start = 122.685019, 31.130863
end = 122.685019, 31.630863
[line_49]
color = 0, 1, 1, 1
start = 122.689247, 31.133562
end = 122.689247, 31.633562
[line_50]
color = 0, 1, 1, 1
start = 122.693474, 31.136260
end = 122.693474, 31.636260
[line_51]
color = 0, 1, 1, 1
start = 122.697701, 31.138958
end = 122.697701, 31.638958
[line_52]
color = 0, 1, 1, 1
start = 122.701928, 31.141656
end = 122.701928, 31.641656
[line_53]
color = 0, 1, 1, 1
start = 122.706155, 31.144354
end = 122.706155, 31.644354
[line_54]
color = 0, 1, 1, 1
start = 122.710383, 31.147053
end = 122.710383, 31.647053
[line_55]
color = 0, 1, 1, 1
start = 122.714610, 31.149751
end = 122.714610, 31.649751
[line_56]
color = 0, 1, 1, 1
start = 122.718837, 31.152449
end = 122.718837, 31.652449
[line_57]
color = 0, 1, 1, 1
start = 122.723064, 31.155147
end = 122.723064, 31.655147
[line_58]
color = 0, 1, 1, 1
start = 122.727291, 31.157846
end = 122.727291, 31.657846
[line_59]
color = 0, 1, 1, 1
start = 122.731519, 31.160544
end = 122.731519, 31.660544
[line_60]
color = 0, 1, 1, 1
start = 122.735746, 31.163242
end = 122.735746, 31.663242
[line_61]
color = 0, 1, 1, 1
start = 122.739973, 31.165940
end = 122.739973, 31.665940
[line_62]
color = 0, 1, 1, 1
start = 122.744200, 31.168638
end = 122.744200, 31.668638
[line_63]
color = 0, 1, 1, 1
start = 122.748427, 31.171337
end = 122.748427, 31.671337
[line_64]
color = 0, 1, 1, 1
start = 122.752655, 31.174035
end = 122.752655, 31.674035
[line_65]
color = 0, 1, 1, 1
start = 122.756882, 31.176733
end = 122.756882, 31.676733
[line_66]
color = 0, 1, 1, 1
start = 122.761109, 31.179431
end = 122.761109, 31.679431
[line_67]
color = 0, 1, 1, 1
start = 122.765336, 31.182129
end = 122.765336, 31.682129
[line_68]
color = 0, 1, 1, 1
start = 122.769563, 31.184828
end = 122.769563, 31.684828
[line_69]
color = 0, 1, 1, 1
start = 122.773791, 31.187526
end = 122.773791, 31.687526
[line_70]
color = 0, 1, 1, 1
start = 122.778018, 31.190224
end = 122.778018, 31.690224
[line_71]
color = 0, 1, 1, 1
start = 122.782245, 31.192922
end = 122.782245, 31.692922
[line_72]
color = 0, 1, 1, 1
start = 122.786472, 31.195621
end = 122.786472, 31.695621
[line_73]
color = 0, 1, 1, 1
start = 122.790699, 31.198319
end = 122.790699, 31.698319
[line_74]
color = 0, 1, 1, 1
start = 122.794927, 31.201017
end = 122.794927, 31.701017
[line_75]
color = 0, 1, 1, 1
start = 122.799154, 31.203715
end = 122.799154, 31.703715
[line_76]
color = 0, 1, 1, 1
start = 122.803381, 31.206413
end = 122.803381, 31.706413
[line_77]
color = 0, 1, 1, 1
start = 122.807608, 31.209112
end = 122.807608, 31.709112
[line_78]
color = 0, 1, 1, 1
start = 122.811835, 31.211810
end = 122.811835, 31.711810
[line_79]
color = 0, 1, 1, 1
start = 122.816063, 31.214508
end = 122.816063, 31.714508
[point_10000]
name = Las Palmas
lon = -15.4166666667
lat = 28.15
[point_0]
name = Dakhla
lon = -15.9372277778
lat = 23.6972111111
[point_3]
name = Cape Town
lon = 18.431416
lat = -33.906544
[point_21]
country = Algeria
name = Algiers
lon = 3.04
lat = 36.77
[point_22]
country = Angola
name = Luanda
lon = 13.24
lat = -8.82
[point_23]
country = Argentina
name = Buenos Aires
lon = -58.37
lat = -34.61
[point_24]
country = Australia
name = Brisbane
lon = 153.02
lat = -27.46
[point_25]
country = Australia
name = Melbourne
lon = 144.96
lat = -37.81
[point_26]
country = Australia
name = Sydney
lon = 151.21
lat = -33.87
[point_27]
country = Austria
name = Vienna
lon = 16.37
lat = 48.22
[point_41]
country = Brazil
name = São Paulo
lon = -46.63
lat = -23.53
[point_42]
country = Burkina Faso
name = Ouagadougou
lon = -1.53
lat = 12.37
[point_43]
country = Cameroon
name = Douala
lon = 9.71
lat = 4.06
[point_44]
country = Cameroon
name = Yaoundé
lon = 11.52
lat = 3.87
[point_45]
country = Canada
name = Montreal
lon = -73.57
lat = 45.52
[point_46]
country = Canada
name = Toronto
lon = -79.38
lat = 43.65
[point_47]
country = Canada
name = Vancouver
lon = -123.13
lat = 49.28
[point_48]
country = Chile
name = Santiago
lon = -70.64
lat = -33.46
[point_49]
country = China
name = Changchun
lon = 125.35
lat = 43.87
[point_53]
country = China
name = Dalian
lon = 121.65
lat = 38.92
[point_54]
country = China
name = Guangzhou
lon = 113.25
lat = 23.12
[point_55]
country = China
name = Hangzhou
lon = 120.17
lat = 30.25
[point_56]
country = China
name = Harbin
lon = 126.65
lat = 45.75
[point_59]
country = China
name = Jiulong
lon = 114.17
lat = 22.32
[point_61]
country = China
name = Nanjing
lon = 118.78
lat = 32.05
[point_62]
country = China
name = Bei Jing
lon = 116.4
lat = 39.93
[point_63]
country = China
name = Qingdao
lon = 120.32
lat = 36.07
[point_64]
country = China
name = Rongcheng
lon = 116.34
lat = 23.54
[point_65]
country = China
name = Shanghai
lon = 121.47
lat = 31.23
[point_66]
country = China
name = Shenyang
lon = 123.45
lat = 41.8
[point_67]
country = China
name = Shijiazhuang
lon = 114.48
lat = 38.05
[point_68]
country = China
name = Suzhou
lon = 120.62
lat = 31.3
[point_71]
country = China
name = Tianjin
lon = 117.2
lat = 39.13
[point_72]
country = China
name = Urumqi
lon = 87.58
lat = 43.8
[point_73]
country = China
name = Wuhan
lon = 114.27
lat = 30.58
[point_74]
country = China
name = Xian
lon = 108.9
lat = 34.27
[point_79]
country = Colombia
name = Medellín
lon = -75.54
lat = 6.29
[point_80]
country = Congo
name = Brazzaville
lon = 15.26
lat = -4.25
[point_81]
country = Congo (Dem. Rep.)
name = Kinshasa
lon = 15.32
lat = -4.31
[point_84]
country = Cuba
name = Havanna
lon = -82.39
lat = 23.13
[point_85]
country = Dominican Republic
name = Santo Domingo
lon = -69.91
lat = 18.48
[point_86]
country = Ecuador
name = Guayaquil
lon = -79.9
lat = -2.21
[point_87]
country = Ecuador
name = Quito
lon = -78.5
lat = -0.19
[point_89]
country = Egypt
name = Cairo
lon = 31.25
lat = 30.06
[point_91]
country = Ethiopia
name = Āddīs Ābebā
lon = 38.74
lat = 9.03
[point_92]
country = France
name = Paris
lon = 2.34
lat = 48.86
[point_93]
country = Germany
name = Berlin
lon = 13.38
lat = 52.52
[point_94]
country = Germany
name = Hamburg
lon = 10.0
lat = 53.55
[point_95]
country = Ghana
name = Accra
lon = -0.2
lat = 5.56
[point_97]
country = Guinea
name = Conakry
lon = -13.67
lat = 9.55
[point_98]
country = Hungary
name = Budapest
lon = 19.08
lat = 47.51
[point_100]
country = India
name = Bangalore
lon = 77.56
lat = 12.97
[point_102]
country = India
name = Bombay
lon = 72.82
lat = 18.96
[point_104]
country = India
name = Delhi
lon = 77.21
lat = 28.67
[point_127]
country = Indonesia
name = Jakarta
lon = 106.83
lat = -6.18
[point_135]
country = Iran
name = Tehrān
lon = 51.43
lat = 35.67
[point_136]
country = Iraq
name = Bagdād
lon = 44.44
lat = 33.33