summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/metapost/profcollege/PfCMonde-futurenew.mp
blob: 2e7b5977f8e41f32fd9efa138e470d0103d7eadb (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
%Package mp-geographie
%Auteur:Christophe Poulain
%Version 0.62
%16/02/2010

input marith;
input sarith;
%input LATEX;

pi:=3.141592654;
c:=57.29578; % conversion d'un radian en degrés

color _T[],rouge,vert,bleu,jaune,noir,blanc,orange,rose,violet,ciel,cielfonce,orangevif,gris,tan,payscolor;

rouge=(1,0,0);
bleu=(0,0,1);
noir=(0,0,0);
blanc=(1,1,1);
orange=(1,0.5,0);
violet=(1,0,1);
rose=(1,0.7,0.7);
cielfonce=(0.25,0.75,1);
ciel=(0,1,1);
orangevif=(1,0.25,0.1);
vert=(0,1,0);
jaune=(1,1,0);
gris=0.8*white;

tan=(0.824,0.705,0.55);
payscolor=tan;

vardef flamme=reverse(2mm*(0.5,1){dir90}..2mm*(0.75,1.5)..{dir90}2mm*(1,2))--2mm*(0.5,1){dir=-90}..2mm*(1,0.5)..{dir=90}2mm*(1.5,1)--((2mm*(0.5,1){dir90}..2mm*(0.75,1.5)..{dir90}2mm*(1,2)) reflectedabout (2mm*(1,0),2mm*(1,0)+2mm*(0,1)))--cycle
enddef;

%Les marques

string marque_p;
marque_p := "non";
marque_r := 20;

def MarquePoint(expr p)=
  if marque_p = "creux":
    if color p:
      fill fullcircle scaled (marque_r/5) shifted (Projgeo(p)) withcolor white;
      draw fullcircle scaled (marque_r/5) shifted (Projgeo(p));
    else:
      fill fullcircle scaled (marque_r/5) shifted (p) withcolor white;
      draw fullcircle scaled (marque_r/5) shifted (p);
    fi;
  elseif marque_p = "croix":
    drawoptions(withpen pencircle scaled 1.25);
    if color p:
      draw (Projgeo(p) shifted (-marque_r/20,marque_r/20))--(Projgeo(p) shifted (marque_r/20,-marque_r/20));
      draw (Projgeo(p) shifted (-marque_r/20,-marque_r/20))--(Projgeo(p) shifted (marque_r/20,marque_r/20));
    else:
      draw ((p) shifted (-marque_r/20,marque_r/20))--((p) shifted (marque_r/20,-marque_r/20));
      draw ((p) shifted (-marque_r/20,-marque_r/20))--((p) shifted (marque_r/20,marque_r/20));
    fi;
    drawoptions();
  fi;
enddef;

vardef pointe(text t) =
  for p_ = t: if (pair p_) or (color p_): MarquePoint(p_); fi endfor;
enddef;

%Définition pour la feuille

path feuillet;
numeric _tfig,_nfig;
_nfig:=0;
u:=1cm;

def feuille(expr xa,ya,xb,yb) =
  numeric Xa,Ya;
  Xa=xa;
  Ya=ya;
  feuillet := (xa,ya)--(xa,yb)--(xb,yb)--(xb,ya)--cycle;
  extra_endfig := "clip currentpicture to feuillet;" & extra_endfig;
enddef;

def figureespace(expr xa,ya,xb,yb) =
  _nfig:=_nfig+1;
  beginfig(_nfig);
    feuille(xa,ya,xb,yb);
enddef;  

def finespace=
endfig;
enddef;

def figure(expr xa,ya,xb,yb)=figureespace(xa,ya,xb,yb)
enddef;

def fin=finespace
enddef;

%definitions mathématiques
vardef cercles(text t)=
  save Cer;
  save n;
  n:=0;
  for p_=t:
    if color p_:
      n:=n+1;
      _T[n]:=p_;
    fi;
  endfor;
  path Cer;
  color ptcer[];
  for k=0 step 5 until 360 :
    ptcer[k div 5]-_T[1]=Distance(_T[1],_T[2])*((_T[4]-_T[3])*cosd(k)/Distance(_T[3],_T[4])+(_T[5]-_T[3])*sind(k)/Distance(_T[3],_T[5]));
  endfor;
  Cer=Projgeo(ptcer0)
  for k=0 step 5 until 360 :
    ..Projgeo(ptcer[k div 5])
  endfor
  ..cycle;
  Cer
enddef;

vardef arcsind(expr x)=%en degré ici :)
  angle((sqrt(1-x**2),x))
enddef;

vardef arccosd(expr x)=%en degré ici :)
  angle((x,sqrt(1-x**2)))
enddef;

vardef tand(expr x)=sind(x)/cosd(x)%
enddef;

vardef cotand(expr x)=cosd(x)/sind(x)%
enddef;

vardef sinc(expr x)=if abs(x)<0.001:1 else:sind(x)*c/x fi enddef;

vardef ln(expr t)=mlog(t)/256%
enddef;

%représentation paramétrique de la sphère terrestre.
vardef FX(expr t,v)=rayon*cosd(c*t)*cosd(c*v)
enddef;

vardef FY(expr t,v)=rayon*cosd(c*t)*sind(c*v)
enddef;

vardef FZ(expr t,v)=rayon*sind(c*t)
enddef;

%Paramètres et macros de représentation
vardef Initialisation(expr r,t,p,d)=
  Rho:=r;
  Theta:=t;
  Phi:=p;
  DE:=d;
  Aux1:=sind(Theta);
  Aux2:=sind(Phi);
  Aux3:=cosd(Theta);
  Aux4:=cosd(Phi);
  Aux5:=Aux3*Aux2;
  Aux6:=Aux1*Aux2;
  Aux7:=Aux3*Aux4;
  Aux8:=Aux1*Aux4;
enddef;

vardef Oeil=(Rho*Aux7,Rho*Aux8,Rho*Aux2)
enddef;

vardef Vision(expr num)=
  save bb;
  color bb;
  bb=(redpart(Oeil-Sommet[num]),greenpart(Oeil-Sommet[num]),bluepart(Oeil-Sommet[num]));  
  bb
enddef;

vardef Normal(expr vecun,vecde,vectr)=
  save aa;
  color aa;
  P1:=redpart(vecde-vecun);
  P2:=greenpart(vecde-vecun);
  P3:=bluepart(vecde-vecun);
  Q1:=redpart(vectr-vecun);
  Q2:=greenpart(vectr-vecun);
  Q3:=bluepart(vectr-vecun);
  aa=(P2*Q3-Q2*P3,P3*Q1-Q3*P1,P1*Q2-Q1*P2);
  aa
enddef;

vardef ProduitScalaire(expr wec,mor)=
  redpart(wec)*redpart(mor)+greenpart(wec)*greenpart(mor)+bluepart(wec)*bluepart(mor)
enddef;

vardef Distance(expr aa,bb)=%Entre deux points
  sqrt((redpart(bb)-redpart(aa))*(redpart(bb)-redpart(aa))+(greenpart(bb)-greenpart(aa))*(greenpart(bb)-greenpart(aa))+(bluepart(bb)-bluepart(aa))*(bluepart(bb)-bluepart(aa)))
enddef;

vardef MaillageS=
  path Maillage[];
  color CentMaillage[];
  %numeric Vmin,Vmax;
  %total:=0;
  for k=Udebut step 0.5*pasU until (Ufin):
    for l=Vdebut step pasV until (Vfin):
      Maillage[100*k+l]=Projgeo((FX(k,l),FY(k,l),FZ(k,l)))--Projgeo((FX(k,l+pasV),FY(k,l+pasV),FZ(k,l+pasV)))--Projgeo((FX(k+pasU,l+pasV),FY(k+pasU,l+pasV),FZ(k+pasU,l+pasV)))--Projgeo((FX(k+pasU,l),FY(k+pasU,l),FZ(k+pasU,l)))--cycle;
      if ProduitScalaire(1/2[(FX(k,l),FY(k,l),FZ(k,l)),(FX(k+pasU,l+pasV),FY(k+pasU,l+pasV),FZ(k+pasU,l+pasV))]-pte3,Oeil-pte3)>0:
	draw Maillage[100*k+l];
      fi;
    endfor;
  endfor;
enddef;

vardef InitialiseMaillage(expr ud,uf,up,vd,vf,vp)=
  Udebut:=ud;
  Ufin:=uf;
  pasU:=up;
  Vdebut:=vd;
  Vfin:=vf;
  pasV:=vp;
enddef;

vardef MaillageSphere=
  InitialiseMaillage(((phim div 10)+1)*pi/18,((phip div 10)-1)*pi/18,pi/18,-pi,pi,pi/36);
  MaillageS;
enddef;

boolean maille;
maille=false;

vardef ParaMeri(expr lonn,latt)=%longitude et latitude en degrés%Parallèle et méridien particulier pour une représentation 3d.
  maille:=true;
  latpar:=latt;
  lonpar:=lonn;
enddef;

vardef Maille=
  InitialiseMaillage(((phim div 10)+1)*pi/18,((phip div 10)-1)*pi/18,pi/36,-pi,pi,pi/72);
  path SMaillage[];picture Smaille;
  drawoptions(withpen pencircle scaled 2bp withcolor orangevif);
  for l=Vdebut step pasV until (Vfin+pasV):
    SMaillage[100*latpar+l]=Projgeo((FX(latpar/c,l),FY(latpar/c,l),FZ(latpar/c,l)))--Projgeo((FX(latpar/c,l+pasV),FY(latpar/c,l+pasV),FZ(latpar/c,l+pasV)));
    if ProduitScalaire(1/2[(FX(latpar/c,l),FY(latpar/c,l),FZ(latpar/c,l)),(FX(latpar/c,l+pasV),FY(latpar/c,l+pasV),FZ(latpar/c,l+pasV))]-pte3,Oeil-pte3)>0:
      draw SMaillage[100*latpar+l];
    fi;
  endfor;
  for k=Udebut step pasU until (Ufin+pasU):
    SMaillage[k+100*lonpar]:=Projgeo((FX(k,lonpar/c),FY(k,lonpar/c),FZ(k,lonpar/c)))--Projgeo((FX(k+pasU,lonpar/c),FY(k+pasU,lonpar/c),FZ(k+pasU,lonpar/c)));
    if ProduitScalaire(1/2[(FX(k,lonpar/c),FY(k,lonpar/c),FZ(k,lonpar/c)),(FX(k+pasU,lonpar/c),FY(k+pasU,lonpar/c),FZ(k+pasU,lonpar/c))]-pte3,Oeil-pte3)>0:
      draw SMaillage[k+100*lonpar];
    fi;
  endfor;
  drawoptions();
    %);
enddef;

vardef Projgeo(expr X)=
  pair $;
  numeric Xobs,Yobs,Zobs,XProj,YProj;
  Xobs = -redpart(X)*Aux1 + greenpart(X)*Aux3;
  Yobs = -redpart(X)*Aux5 - greenpart(X)*Aux6 + bluepart(X)*Aux4;
  Zobs = -redpart(X)*Aux7 - greenpart(X)*Aux8 - bluepart(X)*Aux2 + Rho;
  XProj = DE*Xobs/Zobs;
  YProj = DE*Yobs/Zobs;
  $=(XProj,YProj);
  $
enddef;

%Début du package
numeric nbpts,nblec,nbcapitales;

vardef lecture(expr nomfichier,fond)=
  color Coord[],Pays[];
  numeric ll;
  ll:=0;
  nbpts:=scantokens readfrom nomfichier;
  for k=1 upto (nbpts div 3):
    pair latlon;
    latlon=((scantokens readfrom nomfichier)+(scantokens readfrom nomfichier)+(scantokens readfrom nomfichier))/3;
    Coord[k]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
    if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
      if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	ll:=ll+1;
	Pays[k]=Coord[k];
      else:
	Pays[k]=2*Coord[k];
      fi;
    else:
      Pays[k]=2*Coord[k];
    fi;
  endfor;
  closefrom nomfichier;
  path pays;
  if ll>0:
    pays=Projgeo(Pays[1])
    for l=2 upto (nbpts div 3):
      --Projgeo(Pays[l])
    endfor;
    if noncolore=true:
      fill pays--cycle withcolor payscolor;
    else:
      fill pays--cycle withcolor fond;
    fi;
    draw pays;
    clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
  fi;
enddef;

string nomfichiermul,NomFichier;

vardef Lectureiles=
  nomfichiermul:=arborescence&"PfCiles.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    color Coord[],fond,Pays[];
    numeric ll;
    ll:=0;
    nbpts:=scantokens readfrom nomfichiermul;
    fond=scantokens readfrom nomfichiermul;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      Coord[k]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
      if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
	if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	  ll:=ll+1;
	  Pays[k]=Coord[k];
	else:
	  Pays[k]=2*Coord[k];
	fi;
      else:
	Pays[k]=2*Coord[k];
      fi;
    endfor;
    path pays;
     if ll>0:
      pays=Projgeo(Pays[1])
      for l=2 upto nbpts:
	--Projgeo(Pays[l])
      endfor;
      if noncolore=true:
	fill pays--cycle withcolor payscolor;
      else:
	fill pays--cycle withcolor fond;
      fi;
      draw pays;
      clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturelacs=
  nomfichiermul:=arborescence&"PfClacs.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    color Coord[],Pays[];
    numeric ll;
    ll:=0;
    nbpts:=scantokens readfrom nomfichiermul;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      Coord[k]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
      if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
	if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	  ll:=ll+1;
	  Pays[k]=Coord[k];
	else:
	  Pays[k]=2*Coord[k];
	fi;
      else:
	Pays[k]=2*Coord[k];
      fi;
    endfor;
    path pays;
    if ll>0:
      pays=Projgeo(Pays[1])
      for l=2 upto nbpts:
	--Projgeo(Pays[l])
      endfor;
      fill pays--cycle withcolor couleurfleuve;
      draw pays;
      clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturelacssup=
  nomfichiermul:=arborescence&"PfClacssup.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    color Coord[],Pays[];
    numeric ll;
    ll:=0;
    nbpts:=scantokens readfrom nomfichiermul;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      Coord[k]=rayon*(cosd(xpart(latlon))*cosd(ypart(latlon)),cosd(xpart(latlon))*sind(ypart(latlon)),sind(xpart(latlon)));
      if ((xpart(latlon)>phim) and (xpart(latlon)<phip)):
	if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	  ll:=ll+1;
	  Pays[k]=Coord[k];
	else:
	  Pays[k]=2*Coord[k];
	fi;
      else:
	Pays[k]=2*Coord[k];
      fi;
    endfor;
    path pays;
    if ll>0:
      pays=Projgeo(Pays[1])
      for l=2 upto nbpts:
	--Projgeo(Pays[l])
      endfor;
      fill pays--cycle withcolor couleurfleuve;
      draw pays;
      clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturevolcans=
  drawoptions(withcolor orange);
  nomfichiermul:=arborescence&"PfCvolcans.dat";
  nblec:=scantokens readfrom nomfichiermul;
  show nblec;
  for p=1 upto nblec:
    color Coord[],Pays[];
    pair latlon;
    latlon=scantokens readfrom nomfichiermul;
    Coord[p]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
    if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
      if ProduitScalaire(Coord[p]-pte3,Oeil-pte3)>0:
	Pays[p]=Coord[p];
	fill flamme shifted Projgeo(Pays[p]) withcolor 1/2[orange,jaune];
      %else:
%	Pays[k]=2*Coord[k];
      fi;
%    else:
%      Pays[k]=2*Coord[k];
    fi;
  endfor;
closefrom nomfichiermul;
drawoptions();
enddef;

vardef Lecturerivieres=
  nomfichiermul:=arborescence&"PfCrivieres.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    color Coord[],fond,Pays[];
    numeric ll;
    ll:=0;
    nbpts:=scantokens readfrom nomfichiermul;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      Coord[k]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
      if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
	if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	  ll:=ll+1;
	  Pays[k]=Coord[k];
	else:
	  Pays[k]=2*Coord[k];
	fi;
      else:
	Pays[k]=2*Coord[k];
      fi;
    endfor;
    path pays;
    if ll>0:
      pays=Projgeo(Pays[1])
      for l=2 upto nbpts:
	--Projgeo(Pays[l])
      endfor;
      draw pays withcolor couleurfleuve;
      clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturerivieressup=
  nomfichiermul:=arborescence&"PfCfleuveseurope.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    color Coord[],fond,Pays[];
    numeric ll;
    ll:=0;
    nbpts:=scantokens readfrom nomfichiermul;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      Coord[k]=rayon*(cosd(xpart(latlon))*cosd(ypart(latlon)),cosd(xpart(latlon))*sind(ypart(latlon)),sind(xpart(latlon)));
      if ((xpart(latlon)>phim) and (xpart(latlon)<phip)):
	if ProduitScalaire(Coord[k]-pte3,Oeil-pte3)>0:
	  ll:=ll+1;
	  Pays[k]=Coord[k];
	else:
	  Pays[k]=2*Coord[k];
	fi;
      else:
	Pays[k]=2*Coord[k];
      fi;
    endfor;
    path pays;
    if ll>0:
      pays=Projgeo(Pays[1])
      for l=2 upto nbpts:
	--Projgeo(Pays[l])
      endfor;
      draw pays withcolor couleurfleuve;
      clip currentpicture to cercles(pte3,pte1,pte3,pte1,pte4);
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturecapitales=
  marque_p:="creux";
  nomfichiermul:=arborescence&"PfCcapitales.dat";
  nbcapitales:=scantokens readfrom nomfichiermul;
  for p=1 upto nbcapitales:
    color Coord[];
    pair latlon;
    picture Nom;
    string p_;
    p_=scantokens readfrom nomfichiermul;
    latlon=scantokens readfrom nomfichiermul;
    Coord[p]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
    Nom=image(
      label.top(TEX(""&p_&""),Projgeo(Coord[p]));
      );
    if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
      if ProduitScalaire(Coord[p]-pte3,Oeil-pte3)>0:
	pointe(Coord[p]);
	%draw Nom;
      fi;
    fi;
  endfor;
  closefrom nomfichiermul;
  marque_p:="non";
enddef;

vardef Lecture(expr Nomfichier)=
  NomFichier:=arborescence&Nomfichier;
  nblec:=scantokens readfrom NomFichier;
  for w=1 upto nblec:
    if projection="non":
      lecture(scantokens readfrom NomFichier);
    else:
      lecturep(scantokens readfrom NomFichier);
    fi;
  endfor;
  closefrom NomFichier;
enddef;

%Pour les projections
string projection;
projection:="non";

vardef zoom(expr nbzoom)=
  if projection="mercator":
    xunit:=nbzoom;
    yunit:=nbzoom*2*cm;
  elseif projection="cylindrique":
    xunit:=2.5*nbzoom;
    yunit:=nbzoom*10*cm;
  elseif projection="winkel":
    xunit:=nbzoom*0.5*mm;
    yunit:=nbzoom;
  elseif projection="simple":
    xunit:=nbzoom*0.5*mm;
    yunit:=nbzoom*0.5*mm;
  elseif projection="bonne":
    xunit:=nbzoom*4*cm;
    yunit:=xunit;
  fi;
enddef;

vardef mercatorc(expr aa,bb)=
  (xunit*(bb-theta),yunit*(ln(abs(tand(45+(aa/2))))-ln(abs(tand(45+(phi/2))))))
enddef;

vardef coniquec(expr aa,bb,pc)=
  abscon:=5*cm*(cosd(aa)*sind(bb*sind(pc)))/(sind(pc)*cosd(aa-pc));
  ordcon:=5*cm*(cosd(aa)*cosd(bb*sind(pc)))/(sind(pc)*cosd(aa-pc));
  (abscon,ordcon)
enddef;

vardef cylindriquec(expr aa,bb)=
  (xunit*(bb-theta),yunit*(sind(aa)-sind(phi)))
enddef;

vardef simplec(expr aa,bb)=
  (xunit*(bb-theta),yunit*(aa-phi))
enddef;

vardef bonnec(expr aaa,bbb)=
  save tt;
  pair tt;
  rho:=cotand(phi)+(phi-aaa)/c;
  E:=(((bbb-theta)/c)/rho)*cosd(aaa);
  tt=xunit*(rho*sind(E*c),cotand(phi)-rho*cosd(E*c));
  tt
enddef;

vardef winkelc(expr aaa,bbb)=
  save ttw;
  pair ttw;
  alphawinkel:=arccosd(cosd(aaa)*cosd(0.5*bbb));
  if alphawinkel=0:
    xwinkel:=0;
    ywinkel:=0;
  else:
    xwinkel:=xunit*0.5*(bbb*cosd(arccosd(2/pi))+(2*cosd(aaa)*sind(0.5*bbb)/sinc(alphawinkel)));
    ywinkel:=yunit*0.5*(aaa+sind(aaa)/sinc(alphawinkel));
  fi;
  ttw=(xwinkel,ywinkel);
  ttw
enddef;

vardef lecturep(expr nomfichier,fond)=
  pair Coord[];
  nbpts:=scantokens readfrom nomfichier;
  numeric ll;
  ll=0;
  for k=1 upto nbpts:
    pair latlon;
    latlon=scantokens readfrom nomfichier;
    if projection="mercator":
      Coord[k]=mercatorc(xpart(latlon/60),ypart(latlon/60))
    elseif projection="winkel":
      Coord[k]=winkelc(xpart(latlon/60),ypart(latlon/60))
    elseif projection="cylindrique":
      Coord[k]=cylindriquec(xpart(latlon/60),ypart(latlon/60));
    elseif projection="simple":
      Coord[k]=simplec(xpart(latlon/60),ypart(latlon/60));
    elseif projection="bonne":
      Coord[k]=bonnec(xpart(latlon/60),ypart(latlon/60));
    elseif projection="coniqueh":
      if (xpart(latlon)>0) or (xpart(latlon)=0):
	ll:=ll+1;
	Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),45);
      fi;
    elseif projection="coniqueb":
      if (xpart(latlon)<0):
	ll:=ll+1;
	Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),-45);
      fi;
    fi;
  endfor;
  closefrom nomfichier;
  path pays;
  if (projection="mercator") or (projection="winkel") or(projection="cylindrique") or (projection="simple") or (projection="bonne"):
    ll:=nbpts
  fi;
  if ll>0:
    pays=Coord[1]
    for l=4 step 3 until ll:%upto ll:
      --Coord[l]
    endfor;
    if noncolore=true:
      fill pays--cycle withcolor payscolor;
    else:
      fill pays--cycle withcolor fond;
    fi;
    draw pays;
  fi;
enddef;

vardef Lectureilesp=
  if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
    nomfichiermul:=arborescence&"PfCIle.dat";
  else:
    nomfichiermul:=arborescence&"PfCiles.dat";
  fi;
  nblec:=scantokens readfrom nomfichiermul;
  if projection="bonne":
    nblec:=nblec-1
  fi;
  for p=1 upto nblec:
    pair Coord[];color fond;
    nbpts:=scantokens readfrom nomfichiermul;
    fond=scantokens readfrom nomfichiermul;
    numeric ll;
    ll=0;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      if projection="mercator":
	Coord[k]=mercatorc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="winkel":
	Coord[k]=winkelc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="simple":
	Coord[k]=simplec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="cylindrique":
	Coord[k]=cylindriquec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="bonne":
	Coord[k]=bonnec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="coniqueh":
	if (xpart(latlon)>0) or (xpart(latlon)=0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),45)
	fi;
      elseif projection="coniqueb":
	if (xpart(latlon)<0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),-45);
	fi;
      fi;
    endfor;
    path pays;
    if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      ll:=nbpts
    fi;
    if ll>0:
      pays=Coord[1]
      for l=2 upto ll:
	--Coord[l]
      endfor;
      if noncolore=true:
	fill pays--cycle withcolor payscolor;
      else:
	fill pays--cycle withcolor fond;
      fi;
      draw pays;
    fi;
  endfor;
  closefrom nomfichiermul;
  if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple"):
    clip currentpicture to feuillet;
  fi;
  if projection="bonne":
    lecturep(arborescence&"PfCpolesud.dat",blanc);
    clip currentpicture to (bonnec(-90,-180) for k=-89 upto 90:..bonnec(k,-180) endfor)..reverse(bonnec(-90,180) for k=-89 upto 90:..bonnec(k,180) endfor)..cycle;
  fi;
enddef;

%14/05/2017
boolean ecriturevilles;
ecriturevilles:=true;
%14/05/2017

vardef Lecturevillesp(expr nompays)=
  nomfichiermul:=arborescence&"PfCvilles"&nompays&".dat";
  nblec:=scantokens readfrom nomfichiermul;
  drawoptions(withcolor (0.15,0.15,0.15)); 
  for p=1 upto nblec:
    pair Coord[],latlon;string p_;
    latlon=scantokens readfrom nomfichiermul;
    p_=scantokens readfrom nomfichiermul;
    if projection="mercator":
      Coord[p]=mercatorc(ypart(latlon),xpart(latlon));
    elseif projection="winkel":
      Coord[p]=winkelcc(ypart(latlon),xpart(latlon));
    elseif projection="simple":
      Coord[p]=simplec(ypart(latlon),xpart(latlon));
    elseif projection="cylindrique":
      Coord[p]=cylindriquec(ypart(latlon),xpart(latlon));
    elseif projection="bonne":
	Coord[p]=bonnec(ypart(latlon),xpart(latlon));
    fi;
    if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      if ecriturevilles=true:
	dotlabel.scantokens readfrom nomfichiermul(TEX(""&p_&""),Coord[p]);
      else:
	dotlabel.scantokens readfrom nomfichiermul("",Coord[p]);
      fi;
    fi;
  endfor;
  drawoptions();
  closefrom nomfichiermul;
enddef;

%16/02/2010

vardef Lecturevilles(expr nomfich)=
marque_p:="creux";
  nomfichiermul:=nomfich&".dat";
  nbcapitales:=scantokens readfrom nomfichiermul;
  for p=1 upto nbcapitales:
    color Coord[];
    pair latlon;
    picture Nom;
    string p_;
    p_=scantokens readfrom nomfichiermul;
    latlon=scantokens readfrom nomfichiermul;
    Coord[p]=rayon*(cosd(xpart(latlon/60))*cosd(ypart(latlon/60)),cosd(xpart(latlon/60))*sind(ypart(latlon/60)),sind(xpart(latlon/60)));
    Nom=image(
      label.scantokens readfrom nomfichiermul(TEX(""&p_&""),Projgeo(Coord[p]));
      );
    if ((xpart(latlon/60)>phim) and (xpart(latlon/60)<phip)):
      if ProduitScalaire(Coord[p]-pte3,Oeil-pte3)>0:
	pointe(Coord[p]);
	draw Nom;
      fi;
    fi;
  endfor;
  closefrom nomfichiermul;
  marque_p:="non";
enddef;
%


vardef Lecturelacsp=
  nomfichiermul:=arborescence&"PfClacs.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    pair Coord[];
    nbpts:=scantokens readfrom nomfichiermul;
    numeric ll;
    ll=0;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      if projection="mercator":
	Coord[k]=mercatorc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="winkel":
	Coord[k]=winkelc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="simple":
	Coord[k]=simplec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="cylindrique":
	Coord[k]=cylindriquec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="bonne":
	Coord[k]=bonnec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="coniqueh":
	if (xpart(latlon)>0) or (xpart(latlon)=0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),45);
	fi;
      elseif projection="coniqueb":
	if (xpart(latlon)<0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),-45);
	fi;
      fi;
    endfor;
    path lac;
    if (projection="mercator") or (projection="winkelc") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      ll:=nbpts
    fi;
    if ll>0:
      lac=Coord[1]
      for l=2 upto ll:
	--Coord[l]
      endfor;
      fill lac--cycle withcolor couleurfleuve;
      draw lac;
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturelacspsup=
  nomfichiermul:=arborescence&"PfClacssup.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    pair Coord[];
    nbpts:=scantokens readfrom nomfichiermul;
    numeric ll;
    ll=0;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      if projection="mercator":
	Coord[k]=mercatorc(xpart(latlon),ypart(latlon));
      elseif projection="winkel":
	Coord[k]=winkelc(xpart(latlon),ypart(latlon));
      elseif projection="simple":
	Coord[k]=simplec(xpart(latlon),ypart(latlon));
      elseif projection="cylindrique":
	Coord[k]=cylindriquec(xpart(latlon),ypart(latlon));
      elseif projection="bonne":
	Coord[k]=bonnec(xpart(latlon),ypart(latlon));
      elseif projection="coniqueh":
	if (xpart(latlon)>0) or (xpart(latlon)=0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon),ypart(latlon),45);
	fi;
      elseif projection="coniqueb":
	if (xpart(latlon)<0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon),ypart(latlon),-45);
	fi;
      fi;
    endfor;
    path lac;
    if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      ll:=nbpts
    fi;
    if ll>0:
      lac=Coord[1]
      for l=2 upto ll:
	--Coord[l]
      endfor;
      fill lac--cycle withcolor couleurfleuve;
      draw lac;
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturerivieresp=
  nomfichiermul:=arborescence&"PfCrivieres.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    pair Coord[];
    nbpts:=scantokens readfrom nomfichiermul;
    numeric ll;
    ll:=0;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      if projection="mercator":
	Coord[k]=mercatorc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="winkel":
	Coord[k]=winkelc(xpart(latlon/60),ypart(latlon/60));
      elseif projection="simple":
	Coord[k]=simplec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="cylindrique":
	Coord[k]=cylindriquec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="bonne":
	Coord[k]=bonnec(xpart(latlon/60),ypart(latlon/60));
      elseif projection="coniqueh":
	if (xpart(latlon)>0) or (xpart(latlon)=0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),45);
	fi;
      elseif projection="coniqueb":
	if (xpart(latlon)<0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon/60),ypart(latlon/60),-45);
	fi;
      fi;
    endfor;
    path riv;
    if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      ll:=nbpts;
    fi;
    if ll>0:
      riv=Coord[1]
      for l=2 upto ll:
	--Coord[l]
      endfor;
      draw riv withcolor couleurfleuve;
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturerivierespsup=
  nomfichiermul:=arborescence&"PfCfleuveseurope.dat";
  nblec:=scantokens readfrom nomfichiermul;
  for p=1 upto nblec:
    pair Coord[];
    nbpts:=scantokens readfrom nomfichiermul;
    numeric ll;
    ll:=0;
    for k=1 upto nbpts:
      pair latlon;
      latlon=scantokens readfrom nomfichiermul;
      if projection="mercator":
	Coord[k]=mercatorc(xpart(latlon),ypart(latlon));
      elseif projection="winkel":
	Coord[k]=winkelc(xpart(latlon),ypart(latlon));
      elseif projection="simple":
	Coord[k]=simplec(xpart(latlon),ypart(latlon));
      elseif projection="cylindrique":
	Coord[k]=cylindriquec(xpart(latlon),ypart(latlon));
      elseif projection="bonne":
	Coord[k]=bonnec(xpart(latlon),ypart(latlon));
      elseif projection="coniqueh":
	if (xpart(latlon)>0) or (xpart(latlon)=0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon),ypart(latlon),45);
	fi;
      elseif projection="coniqueb":
	if (xpart(latlon)<0):
	  ll:=ll+1;
	  Coord[ll]=coniquec(xpart(latlon),ypart(latlon),-45);
	fi;
      fi;
    endfor;
    path riv;
    if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
      ll:=nbpts;
    fi;
    if ll>0:
      riv=Coord[1]
      for l=2 upto ll:
	--Coord[l]
      endfor;
      draw riv withcolor couleurfleuve;
    fi;
  endfor;
  closefrom nomfichiermul;
enddef;

vardef Lecturecapitalesp=
  marque_p:="creux";
  nomfichiermul:=arborescence&"PfCcapitales.dat";
  nbcapitales:=scantokens readfrom nomfichiermul;
  for p=1 upto nbcapitales:
    pair Coord[],latlon;
    string p_;
    p_=scantokens readfrom nomfichiermul;
    latlon=scantokens readfrom nomfichiermul;
    ll:=0;
    if projection="mercator":
      Coord[p]=mercatorc(xpart(latlon/60),ypart(latlon/60));
      ll:=1;
    elseif projection="winkel":
      Coord[p]=winkelc(xpart(latlon/60),ypart(latlon/60));
      ll:=1;
    elseif projection="simple":
      Coord[p]=simplec(xpart(latlon/60),ypart(latlon/60));
      ll:=1;
    elseif projection="cylindrique":
      Coord[p]=cylindriquec(xpart(latlon/60),ypart(latlon/60));
      ll:=1;
    elseif projection="bonne":
      Coord[p]=bonnec(xpart(latlon/60),ypart(latlon/60));
      ll:=1;
    elseif projection="coniqueh":
      if (xpart(latlon)>0) or (xpart(latlon)=0):
	ll:=1;
	Coord[p]=coniquec(xpart(latlon/60),ypart(latlon/60),45);
      fi;
    elseif projection="coniqueb":
      if (xpart(latlon)<0):
	ll:=1;
	Coord[p]=coniquec(xpart(latlon/60),ypart(latlon/60),-45);
      fi;
    fi;
    if ll>0:
      drawoptions(withcolor rouge);
      pointe(Coord[p]);
      drawoptions();
      if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple") or (projection="bonne"):
	label.top(TEX(""&p_&""),Coord[p]);
      fi;
    fi;
  endfor;
  closefrom nomfichiermul;
  marque_p:="non";
enddef;

vardef MeridienParallele=
  if (projection="mercator") or (projection="winkel") or (projection="cylindrique") or (projection="simple"):
    pair Coord[];
    for k=-85 step 5 until 85:
  for j=-180 step 10 until 180:
	if projection="mercator":
	  Coord[100*k+j]=mercatorc(k,j);
	elseif projection="winkel":
	Coord[100*k+j] = winkelc(k,j);
	elseif projection="simple":
	  Coord[100*k+j]=simplec(k,j);
	elseif projection="cylindrique":
	  Coord[100*k+j]=cylindriquec(k,j);
	fi;
      endfor;
    endfor;
    for k=-85 step 5 until 85:
      draw Coord[100*k-180]
	for j=-170 step 10 until 180:
	--Coord[100*k+j]
     endfor;
    endfor;
    pair Coord[];
    for k=-180 step 10 until 180:
      for j=-85 step 5 until 85:
	if projection="mercator":
	  Coord[0.001*k+10*j]=mercatorc(j,k);
	elseif projection="winkel":
	  Coord[0.001*k+10*j]=winkelc(j,k);
	elseif projection="simple":
	  Coord[0.001*k+10*j]=simplec(j,k);
	elseif projection="cylindrique":
	  Coord[0.001*k+10*j]=cylindriquec(j,k);
	fi;
      endfor;
    endfor;
    for k=-180 step 10 until 180:
      draw Coord[0.001*k-10*85]
	for j=-80 step 5 until 85:
	--Coord[0.001*k+10*j]
      endfor;
    endfor;
  elseif projection="bonne":
    pair Coord[][];
    for k=-90 step 10 until 90:
      for j=-180 step 10 until 180:
	Coord[k][j]=bonnec(k,j);
      endfor;
    endfor;
    for k=-90 step 10 until 90:
      draw Coord[k][-180]
      for j=-170 step 10 until 180:
	--Coord[k][j]
      endfor;
    endfor;
    pair Coord[][];
    for k=-170 step 10 until 170:
      for j=-90 step 10 until 90:
	Coord[k][j]=bonnec(j,k);
      endfor;
    endfor;
    for k=-170 step 10 until 170:
      draw Coord[k][-90]
      for j=-80 step 10 until 90:
	..Coord[k][j]
      endfor;
    endfor;
  elseif projection="coniqueh":
    pair Coord[];
    for k=-180 step 10 until 180:
      for j=0 step 10 until 90:
	Coord[100*k+j]=coniquec(j,k,45);
      endfor;
    endfor;
    for k=-180 step 10 until 180:
      draw Coord[100*k]
      for j=10 step 10 until 90:
	--Coord[100*k+j]
      endfor;
    endfor;
    pair Coord[];
    for k=0 step 10 until 90:
      for j=-180 step 10 until 180:
	Coord[0.001*k+10*j]=coniquec(k,j,45);
      endfor;
    endfor;
    for k=0 step 10 until 90:
      draw Coord[0.001*k-10*180]
      for j=-170 step 10 until 180:
	--Coord[0.001*k+10*j]
      endfor;
    endfor;
    clip currentpicture to coniquec(90,0,45)--(Coord[-10*180]
      for j=-170 step 10 until 180:
	--Coord[10*j]
      endfor)--cycle;
  elseif projection="coniqueb":
    pair Coord[];
    for k=-180 step 10 until 180:
      for j=-90 step 10 until 0:
	Coord[100*k+j]=coniquec(j,k,-45);
      endfor;
    endfor;
    for k=-180 step 10 until 180:
      draw Coord[100*k-90]
      for j=-80 step 10 until 0:
	--Coord[100*k+j]
      endfor;
    endfor;
    pair Coord[];
    for k=-90 step 10 until 0:
      for j=-180 step 10 until 180:
	Coord[0.001*k+10*j]=coniquec(k,j,-45);
      endfor;
    endfor;
    for k=-90 step 10 until 0:
      draw Coord[0.001*k-10*180]
      for j=-170 step 10 until 180:
	--Coord[0.001*k+10*j]
      endfor;
    endfor;
    clip currentpicture to coniquec(-90,0,-45)--(Coord[-10*180]
      for j=-170 step 10 until 180:
	--Coord[10*j]
      endfor)--cycle;
  fi;
enddef;

boolean Echelle;
Echelle=false;

vardef echelle(expr Th,Ph,long)=%long en km.
  %Echelle:=true;
  theta:=Th;
  phi:=Ph;
  Long:=long;
  zoom(1);
  numeric $;
  if projection="bonne":
    $=(cm*pi*cosd(Ph)/36)/(long*abs(bonnec(Ph,Th)-bonnec(Ph,Th+5)))*6340;
  elseif projection="mercator":
    $=(cm*pi*cosd(Ph)*6340/36)/(long*abs(mercatorc(Ph,Th)-mercatorc(Ph,Th+5)));
    elseif projection="winkel":
    $=(cm*pi*cosd(Ph)*6340/36)/(long*abs(winkelc(Ph,Th)-winkelc(Ph,Th+5)));
  elseif projection="simple":
    $=(cm*pi*cosd(Ph)*6340/36)/(long*abs(simplec(Ph,Th)-simplec(Ph,Th+5)));
  elseif projection="cylindrique":
    $=(cm*pi*cosd(Ph)*6340/36)/(long*abs(cylindriquec(Ph,Th)-cylindriquec(Ph,Th+5)));
  fi;
  $
enddef;

boolean Amsud,Amnord,Amcentrale,Caraibes,Asie,Europe,Afrique,All;

Amsud:=false;
Amnord:=false;
Amcentrale:=false;
Caraibes:=false;
Asie:=false;
Europe:=false;
Afrique:=false;
All:=true;

vardef Projection(expr TH,PH,Zoom)=
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  if projection="bonne":
    fill (bonnec(-90,-180) for k=-85 step 5 until 90:..bonnec(k,-180) endfor)..reverse(bonnec(-90,180) for k=-85 step 5 until 90:..bonnec(k,180) endfor)..cycle withcolor couleurfond;
  fi;
  if All=true:
    Lecture("PfCCameriquesud.dat");
    Lecture("PfCCcaraibes.dat");
    Lecture("PfCCameriquecentrale.dat");
    Lecture("PfCCameriquenord.dat");
    Lecture("PfCCasia.dat");
    Lecture("PfCCeurope.dat");
    Lecture("PfCCafrique.dat");
  else:
    if Amsud=true:
      Lecture("PfCCameriquesud.dat");
    fi;
    if Amnord=true:
      Lecture("PfCCameriquenord.dat");
    fi;
    if Amcentrale=true:
      Lecture("PfCCameriquecentrale.dat");
    fi;
    if Caraibes=true:
      Lecture("PfCCcaraibes.dat");
    fi;
    if Asie=true:
      if projection="bonne":
	Lecture("PfCCasie.dat");
      else:
	Lecture("PfCCasia.dat");
      fi;
    fi;
    if Europe=true:
      Lecture("PfCCeurope.dat");
    fi;
    if Afrique=true:
      Lecture("PfCCafrique.dat");
    fi;
  fi;
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
    Lecturerivierespsup;
  fi;
  if maillage=true:
    drawoptions(withcolor gris);
    MeridienParallele;
    drawoptions();
  fi;
  if Echelle=true:
    draw ((Xa,Ya)+u*(1,1))--((Xa,Ya)+u*(2,1));
    labeloffset:=labeloffset*1.5;
    label.top(btex 0 etex,(Xa,Ya)+u*(1,1));
    label.top(TEX(""&decimal(Long)&"~km"),(Xa,Ya)+u*(2,1));
    labeloffset:=labeloffset/1.5;
    draw ((Xa,Ya)+u*(1,1.1))--((Xa,Ya)+u*(1,0.9));
    draw (((Xa,Ya)+u*(1,1.1))--((Xa,Ya)+u*(1,0.9))) shifted(u*(1,0));
  fi;
enddef;

vardef Simple(expr TH,PH,Zoom)=
  projection:="simple";
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasia.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
   fi;
  if maillage=true:
    MeridienParallele
  fi;
enddef;

vardef Mercator(expr TH,PH,Zoom)=
  projection:="mercator";
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasia.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
  fi;
  if maillage=true:
    MeridienParallele
  fi;
enddef;

vardef Winkel(expr TH,PH,Zoom)=
  projection:="winkel";
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasia.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
  fi;
  if maillage=true:
    MeridienParallele;
  fi;
enddef;

vardef Cylindrique(expr TH,PH,Zoom)=
  projection:="cylindrique";
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasia.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
  fi;
  if maillage=true:
    MeridienParallele
  fi;
enddef;

vardef Bonne(expr TH,PH,Zoom)=
  projection:="bonne";
  theta:=TH;
  phi:=PH;
  zoom(Zoom);
  fill (bonnec(-90,-180) for k=-85 step 5 until 90:..bonnec(k,-180) endfor)..reverse(bonnec(-90,180) for k=-85 step 5 until 90:..bonnec(k,180) endfor)..cycle withcolor couleurfond;
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasie.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
  fi;
  if maillage=true:
    drawoptions(withcolor gris);
    MeridienParallele;
    drawoptions();
  fi;
  draw (bonnec(-90,-180) for k=-85 step 5 until 90:..bonnec(k,-180) endfor)..reverse(bonnec(-90,180) for k=-85 step 5 until 90:..bonnec(k,180) endfor)..cycle;
enddef;

vardef ConiqueH=
  projection:="coniqueh";
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasie.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
    Lecturerivierespsup;
  fi;
  drawoptions(withcolor gris);
  MeridienParallele;
  drawoptions();
enddef;

vardef ConiqueB=
  projection:="coniqueb";
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasie.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if lacs=true:
    Lecturelacsp;
    Lecturelacspsup;
  fi;
  Lectureilesp;
  if capitales=true:
    Lecturecapitalesp;
  fi;
  if fleuves=true:
    Lecturerivieresp;
    Lecturerivierespsup;
  fi;
  drawoptions(withcolor gris);
  MeridienParallele;
  drawoptions();
enddef;

%%%%%%%

rayon:=2;

boolean fleuves,lacs,capitales,noncolore,maillage,volcans;
fleuves=true;
lacs=true;
capitales=true;
noncolore=false;
maillage=false;
volcans=false;

color couleurfond,couleurmaillage,couleurfleuve;
couleurfond:=ciel;
couleurmaillage:=gris;
couleurfleuve:=cielfonce;

vardef Mappemonde(expr longobs,latobs)=
  projection:="non";
  %figureespace(-100u,-100u,100u,100u);
  Initialisation(5,longobs,latobs,distanceecran);
  numeric phim,phip,phii;%phi moins -- phi plus - phi intermédiaire
  phim=Phi+arcsind(rayon/Rho)-90;
  phip=Phi+90-arcsind(rayon/Rho);
  color pte[];
  pte1=rayon*(cosd(phim)*cosd(Theta),cosd(phim)*sind(Theta),sind(phim));
  pte2=rayon*(cosd(phip)*cosd(Theta),cosd(phip)*sind(Theta),sind(phip));
  pte3=1/2[pte1,pte2];
  pte4-pte3=Normal((0,0,0),pte1,pte2);
  if (Phi>90):
    phip:=180-phip;
    phii:=180-phim;
    phim:=phip;
    phip:=phii;
  fi;
  if (Phi<-90):
    phip:=-180-phip;
    phii:=-180-phim;
    phim:=phip;
    phip:=phii;
  fi;
  fill cercles(pte3,pte1,pte3,pte1,pte4) withcolor couleurfond;
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasie.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if volcans=true:
    Lecturevolcans;
  fi;
  if lacs=true:
    Lecturelacs;
    Lecturelacssup;
  fi;
  Lectureiles;
  if capitales=true:
    Lecturecapitales;
  fi;
  if fleuves=true:
    Lecturerivieres;
    %Lecturerivieressup;
  fi;
  if maillage=true:
    drawoptions(withcolor couleurmaillage);
    MaillageSphere;
    drawoptions();
  fi;
  if maille=true:
    Maille;
  fi;
  draw cercles(pte3,pte1,pte3,pte1,pte4);
  %finespace;
enddef;

vardef mappemonde(expr longobs,latobs)=
  projection:="non";
  %figureespace(-100u,-100u,100u,100u);
  Initialisation(5,longobs,latobs,distanceecran);
  numeric phim,phip,phii;%phi moins -- phi plus - phi intermédiaire
  phim=Phi+arcsind(rayon/Rho)-90;
  phip=Phi+90-arcsind(rayon/Rho);
  color pte[];
  pte1=rayon*(cosd(phim)*cosd(Theta),cosd(phim)*sind(Theta),sind(phim));
  pte2=rayon*(cosd(phip)*cosd(Theta),cosd(phip)*sind(Theta),sind(phip));
  pte3=1/2[pte1,pte2];
  pte4-pte3=Normal((0,0,0),pte1,pte2);
  if (Phi>90):
    phip:=180-phip;
    phii:=180-phim;
    phim:=phip;
    phip:=phii;
  fi;
  if (Phi<-90):
    phip:=-180-phip;
    phii:=-180-phim;
    phim:=phip;
    phip:=phii;
  fi;
  fill cercles(pte3,pte1,pte3,pte1,pte4) withcolor couleurfond;
  Lecture("PfCCameriquesud.dat");
  Lecture("PfCCcaraibes.dat");
  Lecture("PfCCameriquecentrale.dat");
  Lecture("PfCCameriquenord.dat");
  Lecture("PfCCasie.dat");
  Lecture("PfCCeurope.dat");
  Lecture("PfCCafrique.dat");
  if volcans=true:
    Lecturevolcans;
  fi;
  if lacs=true:
    Lecturelacs;
    Lecturelacssup;
  fi;
  Lectureiles;
  if capitales=true:
    Lecturecapitales;
  fi;
  if fleuves=true:
    Lecturerivieres;
    %Lecturerivieressup;
  fi;
  if maillage=true:
    drawoptions(withcolor couleurmaillage);
    MaillageSphere;
    drawoptions();
  fi;
  if maille=true:
    Maille;
  fi;
  draw cercles(pte3,pte1,pte3,pte1,pte4);
%  finespace;
enddef;

endinput;