-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflight.kml
8709 lines (8709 loc) · 317 KB
/
flight.kml
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
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://earth.google.com/kml/2.2'>
<Document>
<Style id= 'Ⅰ' >
<LineStyle>
<color>ffffff00</color>
<width> 10 </width>
</LineStyle>
</Style>
<Style id='Ⅱ'>
<LineStyle>
<color>ff00ffff</color>
<width> 10 </width>
</LineStyle>
</Style>
<Style id='Ⅲ'>
<LineStyle>
<color>ff0000ff</color>
<width> 10 </width>
</LineStyle>
</Style>
<Placemark>
<name> 区間 0-10</name>
<description>test 140.076954188 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076954188,36.109267058 140.076954193,36.109267171 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 10-20</name>
<description>test 140.076954193 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076954193,36.109267171 140.076954188,36.109267248 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 20-30</name>
<description>test 140.076954188 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076954188,36.109267248 140.076954188,36.109267339 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 30-40</name>
<description>test 140.076954188 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076954188,36.109267339 140.07695419,36.109267418 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 40-50</name>
<description>test 140.07695419 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07695419,36.109267418 140.07695215,36.109258346 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 50-60</name>
<description>test 140.07695215 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07695215,36.109258346 140.076954371,36.109262995 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 60-70</name>
<description>test 140.076954371 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076954371,36.109262995 140.07695805449998,36.109272071999996 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 70-80</name>
<description>test 140.07695805449998 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07695805449998,36.109272071999996 140.076961738,36.109281345 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 80-90</name>
<description>test 140.076961738 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076961738,36.109281345 140.07696699,36.10929263 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 90-100</name>
<description>test 140.07696699 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07696699,36.10929263 140.076973808,36.109306616 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 100-110</name>
<description>test 140.076973808 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076973808,36.109306616 140.076984275,36.109324198 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 110-120</name>
<description>test 140.076984275 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076984275,36.109324198 140.076997778,36.109345886 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 120-130</name>
<description>test 140.076997778 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.076997778,36.109345886 140.077015138,36.109370968 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 130-140</name>
<description>test 140.077015138 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077015138,36.109370968 140.07703543,36.109399196 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 140-150</name>
<description>test 140.07703543 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07703543,36.109399196 140.077057843,36.109430263 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 150-160</name>
<description>test 140.077057843 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077057843,36.109430263 140.077080636,36.109462495 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 160-170</name>
<description>test 140.077080636 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077080636,36.109462495 140.077103526,36.109494446 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 170-180</name>
<description>test 140.077103526 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077103526,36.109494446 140.077128545,36.10952579 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 180-190</name>
<description>test 140.077128545 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077128545,36.10952579 140.07715599,36.109558539 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 190-200</name>
<description>test 140.07715599 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07715599,36.109558539 140.077184086,36.109591768 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 200-210</name>
<description>test 140.077184086 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077184086,36.109591768 140.077211913,36.109623653 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 210-220</name>
<description>test 140.077211913 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077211913,36.109623653 140.077237115,36.109654883 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 220-230</name>
<description>test 140.077237115 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077237115,36.109654883 140.077260971,36.109684455 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 230-240</name>
<description>test 140.077260971 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077260971,36.109684455 140.077289115,36.109708863 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 240-250</name>
<description>test 140.077289115 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077289115,36.109708863 140.07732288,36.10972039 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 250-260</name>
<description>test 140.07732288 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07732288,36.10972039 140.077354195,36.109714293 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 260-270</name>
<description>test 140.077354195 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077354195,36.109714293 140.077377935,36.109701191 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 270-280</name>
<description>test 140.077377935 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077377935,36.109701191 140.077401398,36.109685506 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 280-290</name>
<description>test 140.077401398 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077401398,36.109685506 140.077429561,36.109669646 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 290-300</name>
<description>test 140.077429561 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077429561,36.109669646 140.07746142,36.109652656 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 300-310</name>
<description>test 140.07746142 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07746142,36.109652656 140.077496703,36.109634441 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 310-320</name>
<description>test 140.077496703 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077496703,36.109634441 140.07753814,36.10961359014286 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 320-330</name>
<description>test 140.07753814 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07753814,36.10961359014286 140.077578076,36.109592723 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 330-340</name>
<description>test 140.077578076 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077578076,36.109592723 140.077609425,36.109568085 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 340-350</name>
<description>test 140.077609425 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077609425,36.109568085 140.077624306,36.109540588 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 350-360</name>
<description>test 140.077624306 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077624306,36.109540588 140.077622043,36.10951272 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 360-370</name>
<description>test 140.077622043 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077622043,36.10951272 140.07760679,36.10949145 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 370-380</name>
<description>test 140.07760679 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07760679,36.10949145 140.077593235,36.109480871 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 380-390</name>
<description>test 140.077593235 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077593235,36.109480871 140.077582551,36.109473566 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 390-400</name>
<description>test 140.077582551 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077582551,36.109473566 140.077570835,36.109466003 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 400-410</name>
<description>test 140.077570835 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077570835,36.109466003 140.07755844,36.109454453 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 410-420</name>
<description>test 140.07755844 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07755844,36.109454453 140.077543181,36.109438205 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 420-430</name>
<description>test 140.077543181 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077543181,36.109438205 140.07752689,36.109417481 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 430-440</name>
<description>test 140.07752689 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.07752689,36.109417481 140.077510441,36.109391948 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 440-450</name>
<description>test 140.077510441 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077510441,36.109391948 140.077493481,36.109360945 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 450-460</name>
<description>test 140.077493481 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077493481,36.109360945 140.077472101,36.109325671 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 460-470</name>
<description>test 140.077472101 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077472101,36.109325671 140.077445748,36.109287721 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 470-480</name>
<description>test 140.077445748 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077445748,36.109287721 140.077414921,36.109248458 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 480-490</name>
<description>test 140.077414921 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077414921,36.109248458 140.077379703,36.109209121 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 490-500</name>
<description>test 140.077379703 </description>
<styleUrl>#Ⅰ</styleUrl> <LineString>
<coordinates>140.077379703,36.109209121 140.077341121,36.109171221 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 500-510</name>
<description>test 140.077341121 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077341121,36.109171221 140.07730036,36.10913332 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 510-520</name>
<description>test 140.07730036 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.07730036,36.10913332 140.077262986,36.10909331 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 520-530</name>
<description>test 140.077262986 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077262986,36.10909331 140.077234771,36.109057343 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 530-540</name>
<description>test 140.077234771 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077234771,36.109057343 140.077218641,36.109026054 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 540-550</name>
<description>test 140.077218641 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077218641,36.109026054 140.077217748,36.108998488 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 550-560</name>
<description>test 140.077217748 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077217748,36.108998488 140.077227478,36.108978206 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 560-570</name>
<description>test 140.077227478 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077227478,36.108978206 140.077238955,36.108964276 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 570-580</name>
<description>test 140.077238955 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077238955,36.108964276 140.077247578,36.108953563 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 580-590</name>
<description>test 140.077247578 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077247578,36.108953563 140.077255791,36.108943533 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 590-600</name>
<description>test 140.077255791 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077255791,36.108943533 140.077263046,36.108928206 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 600-610</name>
<description>test 140.077263046 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077263046,36.108928206 140.077267948,36.108906896 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 610-620</name>
<description>test 140.077267948 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077267948,36.108906896 140.077265185,36.108880956 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 620-630</name>
<description>test 140.077265185 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077265185,36.108880956 140.077253368,36.108853579 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 630-640</name>
<description>test 140.077253368 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077253368,36.108853579 140.077239505,36.108824483 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 640-650</name>
<description>test 140.077239505 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077239505,36.108824483 140.0772237,36.108794725 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 650-660</name>
<description>test 140.0772237 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.0772237,36.108794725 140.07720475,36.108766145 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 660-670</name>
<description>test 140.07720475 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.07720475,36.108766145 140.077186678,36.108741626 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 670-680</name>
<description>test 140.077186678 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077186678,36.108741626 140.077172975,36.108723733 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 680-690</name>
<description>test 140.077172975 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077172975,36.108723733 140.077164818,36.108712553 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 690-700</name>
<description>test 140.077164818 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077164818,36.108712553 140.077160945,36.10870704 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 700-710</name>
<description>test 140.077160945 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077160945,36.10870704 140.077159383,36.108704703 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 710-720</name>
<description>test 140.077159383 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159383,36.108704703 140.077159049,36.108704303 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 720-730</name>
<description>test 140.077159049 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159049,36.108704303 140.077159066,36.108704315 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 730-740</name>
<description>test 140.077159066 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159066,36.108704315 140.077159049,36.108704275 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 740-750</name>
<description>test 140.077159049 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159049,36.108704275 140.077159051,36.108704291 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 750-760</name>
<description>test 140.077159051 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159051,36.108704291 140.077159043,36.108704283 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 760-770</name>
<description>test 140.077159043 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159043,36.108704283 140.077159053,36.108704263999996 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 770-780</name>
<description>test 140.077159053 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159053,36.108704263999996 140.077159054,36.108704291 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 780-790</name>
<description>test 140.077159054 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159054,36.108704291 140.077159053,36.108704278 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 790-800</name>
<description>test 140.077159053 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159053,36.108704278 140.077159033,36.108704321 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 800-810</name>
<description>test 140.077159033 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159033,36.108704321 140.077159038,36.108704283 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 810-820</name>
<description>test 140.077159038 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159038,36.108704283 140.077159033,36.108704288 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 820-830</name>
<description>test 140.077159033 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159033,36.108704288 140.077159021,36.108704298 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 830-840</name>
<description>test 140.077159021 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159021,36.108704298 140.077159028,36.108704285 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 840-850</name>
<description>test 140.077159028 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159028,36.108704285 140.077159049,36.108704268 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 850-860</name>
<description>test 140.077159049 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077159049,36.108704268 140.07715842,36.108703226 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 860-870</name>
<description>test 140.07715842 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.07715842,36.108703226 140.077155773,36.108699091 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 870-880</name>
<description>test 140.077155773 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077155773,36.108699091 140.077150716,36.108692073 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 880-890</name>
<description>test 140.077150716 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077150716,36.108692073 140.077141755,36.108679496 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 890-900</name>
<description>test 140.077141755 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077141755,36.108679496 140.07712758,36.108658818 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 900-910</name>
<description>test 140.07712758 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.07712758,36.108658818 140.077111541,36.108629788 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 910-920</name>
<description>test 140.077111541 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077111541,36.108629788 140.077102023,36.108591696 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 920-930</name>
<description>test 140.077102023 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077102023,36.108591696 140.077108385,36.108547558 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 930-940</name>
<description>test 140.077108385 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077108385,36.108547558 140.077132273,36.108502908 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 940-950</name>
<description>test 140.077132273 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077132273,36.108502908 140.077169665,36.108458761 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 950-960</name>
<description>test 140.077169665 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077169665,36.108458761 140.077218746,36.108412433 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 960-970</name>
<description>test 140.077218746 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077218746,36.108412433 140.077276403,36.108362881 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 970-980</name>
<description>test 140.077276403 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077276403,36.108362881 140.077342001,36.108310268 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 980-990</name>
<description>test 140.077342001 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077342001,36.108310268 140.077413668,36.108255151 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 990-1000</name>
<description>test 140.077413668 </description>
<styleUrl>#Ⅱ</styleUrl> <LineString>
<coordinates>140.077413668,36.108255151 140.07748882,36.108197425 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1000-1010</name>
<description>test 140.07748882 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07748882,36.108197425 140.077567903,36.108138781 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1010-1020</name>
<description>test 140.077567903 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.077567903,36.108138781 140.077649781,36.108078405 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1020-1030</name>
<description>test 140.077649781 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.077649781,36.108078405 140.077734441,36.108016703 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1030-1040</name>
<description>test 140.077734441 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.077734441,36.108016703 140.077822425,36.107954745 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1040-1050</name>
<description>test 140.077822425 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.077822425,36.107954745 140.077913805,36.107892726 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1050-1060</name>
<description>test 140.077913805 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.077913805,36.107892726 140.078006373,36.107829313 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1060-1070</name>
<description>test 140.078006373 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078006373,36.107829313 140.07810047,36.107765685 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1070-1080</name>
<description>test 140.07810047 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07810047,36.107765685 140.078196468,36.107702218 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1080-1090</name>
<description>test 140.078196468 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078196468,36.107702218 140.078293523,36.10763829 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1090-1100</name>
<description>test 140.078293523 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078293523,36.10763829 140.07839107,36.107573304 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1100-1110</name>
<description>test 140.07839107 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07839107,36.107573304 140.07848894,36.107507016 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1110-1120</name>
<description>test 140.07848894 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07848894,36.107507016 140.078587723,36.107440013 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1120-1130</name>
<description>test 140.078587723 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078587723,36.107440013 140.078687608,36.107372958 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1130-1140</name>
<description>test 140.078687608 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078687608,36.107372958 140.07878708,36.10730627 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1140-1150</name>
<description>test 140.07878708 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07878708,36.10730627 140.078886421,36.107240005 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1150-1160</name>
<description>test 140.078886421 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078886421,36.107240005 140.078980548,36.107177561 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1160-1170</name>
<description>test 140.078980548 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.078980548,36.107177561 140.079065475,36.107121731 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1170-1180</name>
<description>test 140.079065475 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079065475,36.107121731 140.079142573,36.107071553 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1180-1190</name>
<description>test 140.079142573 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079142573,36.107071553 140.079213314,36.107024511 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1190-1200</name>
<description>test 140.079213314 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079213314,36.107024511 140.079279311,36.106979923 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1200-1210</name>
<description>test 140.079279311 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079279311,36.106979923 140.07934231,36.106937961 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1210-1220</name>
<description>test 140.07934231 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07934231,36.106937961 140.079403188,36.106897423 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1220-1230</name>
<description>test 140.079403188 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079403188,36.106897423 140.07946317,36.106858075 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1230-1240</name>
<description>test 140.07946317 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07946317,36.106858075 140.079521963,36.106820343 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1240-1250</name>
<description>test 140.079521963 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079521963,36.106820343 140.079577035,36.106782898 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1250-1260</name>
<description>test 140.079577035 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079577035,36.106782898 140.079626741,36.106748325 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1260-1270</name>
<description>test 140.079626741 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079626741,36.106748325 140.079674538,36.106715081 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1270-1280</name>
<description>test 140.079674538 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079674538,36.106715081 140.079722823,36.106681935 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1280-1290</name>
<description>test 140.079722823 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079722823,36.106681935 140.07977369,36.106647988 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1290-1300</name>
<description>test 140.07977369 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.07977369,36.106647988 140.079827681,36.106612145 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1300-1310</name>
<description>test 140.079827681 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079827681,36.106612145 140.079885783,36.106573876 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1310-1320</name>
<description>test 140.079885783 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079885783,36.106573876 140.079948556,36.106533046 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1320-1330</name>
<description>test 140.079948556 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.079948556,36.106533046 140.080015945,36.106489228 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1330-1340</name>
<description>test 140.080015945 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080015945,36.106489228 140.080086606,36.106442058 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1340-1350</name>
<description>test 140.080086606 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080086606,36.106442058 140.080160343,36.106391193 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1350-1360</name>
<description>test 140.080160343 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080160343,36.106391193 140.080237183,36.106338538 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1360-1370</name>
<description>test 140.080237183 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080237183,36.106338538 140.080318243,36.106285206 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1370-1380</name>
<description>test 140.080318243 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080318243,36.106285206 140.080402508,36.106230096 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1380-1390</name>
<description>test 140.080402508 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080402508,36.106230096 140.080489703,36.106173146 </coordinates>
</LineString>
</Placemark>
<Placemark>
<name> 区間 1390-1400</name>
<description>test 140.080489703 </description>
<styleUrl>#Ⅲ</styleUrl> <LineString>
<coordinates>140.080489703,36.106173146 140.080579991,36.10611434 </coordinates>
</LineString>