-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathguide_aires_securite.kml
1162 lines (1162 loc) · 36.2 KB
/
guide_aires_securite.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://www.opengis.net/kml/2.2">
<Document>
<Style id="{facile}">
<IconStyle>
<Icon>
<href>marker_green.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{normal}">
<IconStyle>
<Icon>
<href>marker_orange.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{difficile}">
<IconStyle>
<Icon>
<href>marker_red.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{tres_difficile}">
<IconStyle>
<Icon>
<href>marker_black.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{aerodrome}">
<IconStyle>
<Icon>
<href>runway.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{terrain}">
<IconStyle>
<Icon>
<href>windsock.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{altiport}">
<IconStyle>
<Icon>
<href>altiport.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{velisurface}">
<IconStyle>
<Icon>
<href>velisurface.png</href>
</Icon>
</IconStyle>
</Style>
<Style id="{col}">
<IconStyle>
<Icon>
<href>mountain_pass.png</href>
</Icon>
</IconStyle>
</Style>
<Folder>
<name>Landouts</name>
<Placemark>
<name>#10 LFNE Salon Eyguieres</name>
<description>150/330 + 090/270 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.01305, 43.65833333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#12 LFJE La Motte Chalancon</name>
<description>030/210 Altiport. Bas-Haut= 821-878m. {altiport}</description>
<styleUrl>#{altiport}</styleUrl>
<Point>
<coordinates>5.403333333333333, 44.49666666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#14 Cereste LF8421</name>
<description>080/260 Terrain prive. Piste balisee. Hangar. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>5.54945, 43.852783333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#16 LFNF Vinon</name>
<description>020/200 + 100/280 + 160/340 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.783616666666667, 43.73778333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#18 StCroix LF0429</name>
<description>130/310 Terrain prive motoplaneur. Ligne electrique et antennes au NW. Piste balisee. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>6.159716666666666, 43.77805</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#20 LFTP Puimoisson</name>
<description>070/250 + 160/340 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.164166666666667, 43.87028333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#22 LFMF Fayence</name>
<description>100R/280L + 100L/280R + 320 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.69695, 43.61055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#24 LFNJ Aspres Sur Buech</name>
<description>180/360 + 10/28 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.73555, 44.51833333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#26 LFTM Serres La Batie</name>
<description>180/360 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.727783333333333, 44.458333333333336</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#28 LFNA Gap Tallard</name>
<description>020/200 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.037216666666667, 44.455</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#32 LFNS Sisteron</name>
<description>170/350 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.929716666666667, 44.2875</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#34 Motte du Caire LF0431</name>
<description>360/180 Velisurface treuil. Piste non balisee. Vent arriere cote E. Atterro preferentiel face au N. {velisurface}</description>
<styleUrl>#{velisurface}</styleUrl>
<Point>
<coordinates>6.030833333333334, 44.32528333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#36 LFMX St Auban</name>
<description>030/150{aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.990833333333334, 44.06</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#38 Seyne LF0430</name>
<description>130/310 Terrain prive. Treuil. Contact radio imperatif. TDP main droite. En 13 toucher apres la bosse a mi piste. Par brise NW marquee se poser court en 31 {velisurface}</description>
<styleUrl>#{velisurface}</styleUrl>
<Point>
<coordinates>6.3727833333333335, 44.342216666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#4 LFHD Pierrelatte</name>
<description>180/360 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>4.7175, 44.39888333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#40 LFNC St Crepin</name>
<description>160/340 + 160L/340R {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.599716666666667, 44.70166666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#42 LFMR Barcelonnette</name>
<description>090/270 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.6097166666666665, 44.388333333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#44 Valsusa</name>
<description>090/270 Terrain prive. Piste en herbe balisee. https://www.vaeivola.it {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>7.287166666666667, 45.1125</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#46 LFHE Romans</name>
<description>060R/240L {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.102783333333333, 45.066116666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#48 LFKE St Jean en Royans</name>
<description>140/320 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.31, 45.02778333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#50 LFLU Valence Chabeuil</name>
<description>010/190 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>4.968616666666667, 44.91555</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#52 LFJF Aubenasson</name>
<description>090/270 Terrain prive. Vent Arriere au Sud. En courte finale 27 turbulences possibles toucher au niveau de la manche a air. {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.15055, 44.695</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#54 Aix en Diois</name>
<description>160/340 Piste prive. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>5.409166666666667, 44.689166666666665</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#56 LFLI Annemasse</name>
<description>120/300 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.268883333333333, 46.19195</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#57 Habere Poche LF7469</name>
<description>014/194 Piste non balisee. Vent arriere bordure Est plateau. Pas de verticale=treuil. Attention parapentes. Atterro possible Terrain ULM Cervens dans le 320 pour 2Km (alt 600m). {velisurface}</description>
<styleUrl>#{velisurface}</styleUrl>
<Point>
<coordinates>6.463333333333333, 46.26971666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#58 LFLP Annecy</name>
<description>040/220 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.1063833333333335, 45.93083333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#6 LFNV Valreas Visan</name>
<description>020/200 {aerodrome}`</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>4.90695, 44.33583333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#60 LFLB Chambery Aix Les Bains</name>
<description>180/360 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.88, 45.63916666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#62 LFLE Challes les eaux</name>
<description>140/320 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.976383333333334, 45.56138333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#64 LFLG Grenoble Versoud</name>
<description>040/220 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.849166666666667, 45.219166666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#66 LFKA Albertville</name>
<description>050/230 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.329166666666667, 45.62721666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#68 LFKD Sollieres Sardieres</name>
<description>010/190 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.80055, 45.25445</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#7 LFNH Carpentras</name>
<description>130/310 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>5.090283333333334, 44.02333333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#70 LFKR St Remy de Maurienne</name>
<description>160/340 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>6.28195, 45.36945</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#72 Prealpi-Musine</name>
<description>030/210 Terrain prive. Piste en herbe balisee. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>7.521833333333333, 45.12433333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#73 Busano</name>
<description>180/360 Terrain prive. Piste en herbe balisee. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>7.665333333333333, 45.31016666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#74 Canavese</name>
<description>130/310 Terrain prive. Piste en herbe balisee. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>7.719666666666667, 45.358333333333334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#75 Montalto Dora</name>
<description>140/320 Terrain prive. Piste en herbe balisee. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>7.843833333333333, 45.48716666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#76 LIMW Aoste</name>
<description>090/270 Frequence VV=123.375 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>7.3675, 45.73833333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#77 Chatelair</name>
<description>100/280 Terrain prive. Piste en herbe balisee. www.aeroclubcorradogex.com {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>7.48, 45.74016666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#78 LSGS Sion</name>
<description>070/250 Frequence Approche=126.825 Frequence VV=123.67 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>7.328883333333334, 46.22</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#8 LFNT Avignon</name>
<description>160R/340L + 12/30 {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>4.75445, 43.996116666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>#9 LFNZ St Remy</name>
<description>180/360 Le Mazet de Romanin. {aerodrome}</description>
<styleUrl>#{aerodrome}</styleUrl>
<Point>
<coordinates>4.89305, 43.768883333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>110 Remoulins ULM</name>
<description>005/185 Piste ULM Largeur=25-30m. Herbe fauchee. {terrain}</description>
<styleUrl>#{terrain}</styleUrl>
<Point>
<coordinates>4.58195, 43.943333333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>111 Tarascon ULM</name>
<description>005/185 Zone posable. Choisir en fct cultures. Piste ULM dans zone. Taxi-way posable. Herbe fauchee. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>4.69695, 43.788333333333334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>112 Eygalieres</name>
<description>SW/NE Attention ligne HT 1km au SW.Sol variable cailloux et prairie. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>4.992216666666667, 43.78333333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>113 Isle Sorgue</name>
<description>NW/SE Cultures hautes. Plusieurs champs. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>5.08305, 43.91695</coordinates>
</Point>
</Placemark>
<Placemark>
<name>114 Orgon-Cheval Blanc</name>
<description>050/230 Prairie. Culture possible. Posable dans 2 sens. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.06525, 43.78875</coordinates>
</Point>
</Placemark>
<Placemark>
<name>120 Gordes ZA</name>
<description>ZA Possibilite cultures hautes. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.251666666666667, 43.9125</coordinates>
</Point>
</Placemark>
<Placemark>
<name>122 Bonnieux ZA</name>
<description>ZA Possibilite cultures hautes. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.291666666666667, 43.833333333333336</coordinates>
</Point>
</Placemark>
<Placemark>
<name>124 Mallemort</name>
<description>270/090 Prairie. Cultures possibles. Proche du point entre Merindol et Mallemort. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.181666666666667, 43.74041666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>126 Lourmarin</name>
<description>ZA Cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.39945, 43.75888333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>127 Banon</name>
<description>ZA Zone cultivee attention aux champs lavande. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.666666666666667, 44.06666666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>128 Vitrolles en Luberon</name>
<description>N/S Remonte vers le N. Attention par vent N (turbulences). Autres champs posables. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.593333333333334, 43.788</coordinates>
</Point>
</Placemark>
<Placemark>
<name>130 Rosans</name>
<description>N/S Remonte vers le N. Turbulences par NW. Autres champs posables. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.471666666666667, 44.38138333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>131 Sederon</name>
<description>ZA Attention par vent NW. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.574716666666666, 44.22055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>132 Sainte Jalle</name>
<description>305/125 Ligne electrique partie SE des champs. Vent arriere cote NE. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>5.30305, 44.33445</coordinates>
</Point>
</Placemark>
<Placemark>
<name>133 Curnier</name>
<description>E/W Prairie. Cultures possibles. Posable dans les 2 sens. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.22, 44.38966666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>135 Methamis</name>
<description>065/245 Prairie. Cultures possibles. Posable dans les 2 sens. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>5.183333333333334, 44.00666666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>210 Quinson</name>
<description>ZA Choisir fct cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.071383333333333, 43.68333333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>211 Artignosc</name>
<description>070 Aerodrome prive. 20m de large. Herbe. Legere montee vers le NE. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.135, 43.68471666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>212 Bauden</name>
<description>130/310 Choisir champ en fct cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.2091666666666665, 43.69166666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>213 Aups</name>
<description>ZA Choisir en fct cultures. Pb possible avec prorietaire. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.18305, 43.625283333333336</coordinates>
</Point>
</Placemark>
<Placemark>
<name>214 Trets ULM</name>
<description>120/300 Terrain ULM. Piste balisee. Seuil decale en 30 (280m). {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.711383333333333, 43.48055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>220 Thorame Haute</name>
<description>310 Pente se poser face NW. Tdp main gauche. Base le long de la montagne. Rotors par Vent NW. {tres_difficile}</description>
<styleUrl>#{tres_difficile}</styleUrl>
<Point>
<coordinates>6.5602833333333335, 44.095283333333334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>221 Thorame basse</name>
<description>310 Poser face NW dans moitie droite du champs. Talus en entree et fosse extremite NW. Vent arriere cote NE. Rotors par NW. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.473616666666667, 44.07695</coordinates>
</Point>
</Placemark>
<Placemark>
<name>222 La Mure</name>
<description>040/220 La Mure Prairie. Arbre cote SW. Utiliser partie encadree dans photo. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.531116666666667, 43.98195</coordinates>
</Point>
</Placemark>
<Placemark>
<name>223 Soleihas</name>
<description>300 En pente. Atterro face au NW uniquement. Route 50cm plus haut. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.64695, 43.85361666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>224 Mousteiret</name>
<description>ZA Attentions selon axe: collines a survoler ou longer. Probleme possible avec proprietaire. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.635, 43.79861666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>225 Logis du Pin</name>
<description>070/250 Prairies. Partie S souvent detrempee. Attention promeneurs. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.641116666666667, 43.7775</coordinates>
</Point>
</Placemark>
<Placemark>
<name>226 Caille</name>
<description>270 Prairies. Detrempe au printemps. Se poser dans la montee. Possibilite cloture electriques le long des parcelles ou de la route. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.736383333333333, 43.78138333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>227 La chapelle</name>
<description>090/270 Atterro dans les 2 sens. Attention piquets. Face W: ne pas se poser juste apres le chemin: mauvais terrain. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.691666666666666, 43.76971666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>228 Trigance</name>
<description>125/305 Reco a pied recommandee. Prairie. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.45555, 43.75445</coordinates>
</Point>
</Placemark>
<Placemark>
<name>229 Palud Verdon</name>
<description>100/280 Reco a pied recommandee. Prairie. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.35305, 43.779716666666666</coordinates>
</Point>
</Placemark>
<Placemark>
<name>231 Ampus</name>
<description>ZA Choisir en fct cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.348883333333333, 43.61695</coordinates>
</Point>
</Placemark>
<Placemark>
<name>232 Flayosc - ULM</name>
<description>020/200 Aerodrome prive. 20m de large. Terrain dans zone reglemente LF-R95 Le Luc (122.200). {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.317783333333334, 43.53805</coordinates>
</Point>
</Placemark>
<Placemark>
<name>310 La Faurie</name>
<description>300/120 Reco a pied indispensable=delicat. Atterro face SE conseille. {tres_difficile}</description>
<styleUrl>#{tres_difficile}</styleUrl>
<Point>
<coordinates>5.758883333333333, 44.56361666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>311 Montmaur</name>
<description>ZA Attention arroseurs. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.857216666666667, 44.56055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>312 Valenty</name>
<description>215 Bordure plateau. Risque turbulence en courte. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.93, 44.36</coordinates>
</Point>
</Placemark>
<Placemark>
<name>313 Laragne ULM</name>
<description>130/310 ULM. Tdp au NE. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.79195, 44.32055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>314 Nossage</name>
<description>020/200 Terrain prive. Remonte vers le SW. Piste balisee. Vent arriere cote E. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.744166666666667, 44.31555</coordinates>
</Point>
</Placemark>
<Placemark>
<name>315 Chabottes</name>
<description>ZA Terrain ULM inutilisable. Zone posable au S de la riviere. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.183883333333333, 44.65445</coordinates>
</Point>
</Placemark>
<Placemark>
<name>316 Domaine de Malcor</name>
<description>270/90 Prairie. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.103883333333333, 44.475</coordinates>
</Point>
</Placemark>
<Placemark>
<name>317 Espinasses</name>
<description>270/90 Cultures fouragere attero delicat a partir debut juin. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.218333333333334, 44.46055</coordinates>
</Point>
</Placemark>
<Placemark>
<name>318 Montgardin</name>
<description>330 Atterro face NW. Bumpy. Ne pas utiliser les champs au S. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.213616666666667, 44.54971666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>320 Bayons</name>
<description>SW/NE Prairie. Reco a pied indispensable. {tres_difficile}</description>
<styleUrl>#{tres_difficile}</styleUrl>
<Point>
<coordinates>6.163333333333333, 44.33583333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>321 Noyer sur Jabron</name>
<description>340 uniquement. Reco a pied indispensable. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>5.841666666666667, 44.17</coordinates>
</Point>
</Placemark>
<Placemark>
<name>322 Volonne</name>
<description>ZA Cultures possibles. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6, 44.10166666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>323 Salignac</name>
<description>160/340 Cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.98, 44.138333333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>324 Thoard</name>
<description>ZA Reco a pied indispensable. Cultures possible. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.128333333333333, 44.1175</coordinates>
</Point>
</Placemark>
<Placemark>
<name>325 Mallemoisson</name>
<description>ZA Cultures possibles. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.083333333333333, 44.03</coordinates>
</Point>
</Placemark>
<Placemark>
<name>330 Selonnet 1</name>
<description>ZA Culture possibles. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.31, 44.36833333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>330 Selonnet 2</name>
<description>ZA Culture possibles. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.331666666666667, 44.346666666666664</coordinates>
</Point>
</Placemark>
<Placemark>
<name>331 Marcoux</name>
<description>010/190 Piste balisee. Attention lignes electriques. Ne pas utiliser #1. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.281116666666667, 44.147216666666665</coordinates>
</Point>
</Placemark>
<Placemark>
<name>332 Barreme</name>
<description>010/190 Champ difficile avec fosses. Vent arriere cote E. Atterro preferentiel face au N. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.386666666666667, 43.9925</coordinates>
</Point>
</Placemark>
<Placemark>
<name>410 Oulx</name>
<description>E/W Reco a pied indispensable. Prairie. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.838883333333333, 45.041666666666664</coordinates>
</Point>
</Placemark>
<Placemark>
<name>411 Le Casset</name>
<description>105/285 Vent arriere cote S du champ. Zone frequentee par promeneurs. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.493883333333334, 44.98278333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>412 St Blaise</name>
<description>050/230 Champ tres difficile. 3 fosses qui limitent la longueur utilisable. Au 230 passer sous la ligne HT. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.61, 44.87278333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>413 Le Rosier</name>
<description>N/S Champ difficile. Fosses buse au milieu du champ. Approche sur le 1er champ et se poser sur le 2. Reco a pied indispensable. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.680833333333333, 44.93528333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>420 Roche de Rame</name>
<description>N/S Tres delicat. Reco a pied indispensable. Beaucoup de fosses. {tres_difficile}</description>
<styleUrl>#{tres_difficile}</styleUrl>
<Point>
<coordinates>6.575, 44.74333333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>421 Chateauroux</name>
<description>ZA Reco a pied indispensable. Ligne THT en cours de construction. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.531666666666666, 44.600833333333334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>422 Crots</name>
<description>060/240 ex-ULM en gravier. Piste non balisee. Haut tas de cailloux cote Nord. Attention kite surf et promeneurs. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.4336166666666665, 44.535833333333336</coordinates>
</Point>
</Placemark>
<Placemark>
<name>423 Prunieres</name>
<description>310 Vent arriere cote S du champ. Prairie. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>6.363333333333333, 44.534166666666664</coordinates>
</Point>
</Placemark>
<Placemark>
<name>510 Saou</name>
<description>ZA Choisir en fct cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.062783333333333, 44.63666666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>511 Die ZA</name>
<description>ZA Choisir en fct cultures. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.3533333333333335, 44.76833333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>513 Luc en Diois</name>
<description>ZA Choisir en fct cultures. Autre ZA 3Km au SE. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.473883333333333, 44.5925</coordinates>
</Point>
</Placemark>
<Placemark>
<name>515 Lus la croix haute</name>
<description>ZA Attention aux lignes electriques qui traversent la zone. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>5.7125, 44.661</coordinates>
</Point>
</Placemark>
<Placemark>
<name>520 Vif</name>
<description>ZA Champ Cereales. Attention lignes electriques. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.681666666666667, 45.07666666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>521 Vizille</name>
<description>030 Atterro face au 030. Cereales. Attention ligne HT. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.7775, 45.08</coordinates>
</Point>
</Placemark>
<Placemark>
<name>522 Grisail</name>
<description>ZA Bon etat a W du champ contrairement apparences. Leger devers. Approche degagee. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.62095, 44.94016666666667</coordinates>
</Point>
</Placemark>
<Placemark>
<name>523 St Jean Herans</name>
<description>ZA Point haut E= Route E/W qui passe dans St Jean. Champs redescendent faiblement au N et au S. Ligne HT bien visible n'est pas un obstacle. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.7725, 44.852783333333335</coordinates>
</Point>
</Placemark>
<Placemark>
<name>524 Pellafol</name>
<description>ZA Choisir en fct cultures. Attention ligne HT et eoliennes (h=100m). Reco a pied conseillee. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.904716666666666, 44.80305</coordinates>
</Point>
</Placemark>
<Placemark>
<name>525 Montmeilleur</name>
<description>085 Piste privee. Herbe. Atterro face a E. Tdp Main droite. Pente 10%. {facile}</description>
<styleUrl>#{facile}</styleUrl>
<Point>
<coordinates>5.763333333333334, 44.79333333333334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>526 Prebois</name>
<description>E Remonte vers E. Atterro face a E imperativement. Choisir en fct cultures. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>5.688616666666666, 44.79083333333333</coordinates>
</Point>
</Placemark>
<Placemark>
<name>527 Bourg Oisans</name>
<description>340 Vent arriere a W du champ. En finale s'aligner sur la haie d'arbres mediane qui separe les champs pour garantir le survol de la ligne electrique. {normal}</description>
<styleUrl>#{normal}</styleUrl>
<Point>
<coordinates>6.03195, 45.064166666666665</coordinates>
</Point>
</Placemark>
<Placemark>
<name>529 Chauffayer</name>
<description>ZA Attention aux lignes electriques qui traversent la zone. {difficile}</description>
<styleUrl>#{difficile}</styleUrl>
<Point>
<coordinates>6.007333333333333, 44.747166666666665</coordinates>
</Point>
</Placemark>
<Placemark>
<name>610 Bernex</name>
<description>080/260 Parcelles paralleles. Chemin agricole partage la ZA en deux secteurs faisant un denivele de 50cm. Vent arriere cote S du champ. {facile}</description>
<styleUrl>#{facile}</styleUrl>