13e12c5d1SDavid du Colombier #include "map.h"
23e12c5d1SDavid du Colombier
Yaitoff(double,double)3*7dd7cddfSDavid du Colombier static proj Yaitoff(double,double){return aitoff();}
Yalbers(double p0,double p1)4219b2ee8SDavid du Colombier static proj Yalbers(double p0,double p1){return albers(p0,p1);}
Yazequalarea(double,double)5*7dd7cddfSDavid du Colombier static proj Yazequalarea(double, double){return azequalarea();}
Yazequidistant(double,double)6*7dd7cddfSDavid du Colombier static proj Yazequidistant(double, double){return azequidistant();}
Ybicentric(double p0,double)7*7dd7cddfSDavid du Colombier static proj Ybicentric(double p0,double){return bicentric(p0);}
Ybonne(double p0,double)8*7dd7cddfSDavid du Colombier static proj Ybonne(double p0,double){return bonne(p0);}
Yconic(double p0,double)9*7dd7cddfSDavid du Colombier static proj Yconic(double p0,double){return conic(p0);}
Ycylequalarea(double p0,double)10*7dd7cddfSDavid du Colombier static proj Ycylequalarea(double p0,double){return cylequalarea(p0);}
Ycylindrical(double,double)11*7dd7cddfSDavid du Colombier static proj Ycylindrical(double, double){return cylindrical();}
Yelliptic(double p0,double)12*7dd7cddfSDavid du Colombier static proj Yelliptic(double p0,double){return elliptic(p0);}
Yfisheye(double p0,double)13*7dd7cddfSDavid du Colombier static proj Yfisheye(double p0,double){return fisheye(p0);}
Ygall(double p0,double)14*7dd7cddfSDavid du Colombier static proj Ygall(double p0,double){return gall(p0);}
Ygilbert(double,double)15*7dd7cddfSDavid du Colombier static proj Ygilbert(double, double){return gilbert();}
Yglobular(double,double)16*7dd7cddfSDavid du Colombier static proj Yglobular(double, double){return globular();}
Ygnomonic(double,double)17*7dd7cddfSDavid du Colombier static proj Ygnomonic(double, double){return gnomonic();}
Yguyou(double,double)18*7dd7cddfSDavid du Colombier static proj Yguyou(double, double){return guyou();}
Yharrison(double p0,double p1)19219b2ee8SDavid du Colombier static proj Yharrison(double p0,double p1){return harrison(p0,p1);}
Yhex(double,double)20*7dd7cddfSDavid du Colombier static proj Yhex(double, double){return hex();}
Yhoming(double p0,double)21*7dd7cddfSDavid du Colombier static proj Yhoming(double p0,double){return homing(p0);}
Ylagrange(double,double)22*7dd7cddfSDavid du Colombier static proj Ylagrange(double, double){return lagrange();}
Ylambert(double p0,double p1)23219b2ee8SDavid du Colombier static proj Ylambert(double p0,double p1){return lambert(p0,p1);}
Ylaue(double,double)24*7dd7cddfSDavid du Colombier static proj Ylaue(double, double){return laue();}
Ylune(double p0,double p1)25*7dd7cddfSDavid du Colombier static proj Ylune(double p0,double p1){return lune(p0,p1);}
Ymecca(double p0,double)26*7dd7cddfSDavid du Colombier static proj Ymecca(double p0, double){return mecca(p0);}
Ymercator(double,double)27*7dd7cddfSDavid du Colombier static proj Ymercator(double, double){return mercator();}
Ymollweide(double,double)28*7dd7cddfSDavid du Colombier static proj Ymollweide(double, double){return mollweide();}
Ynewyorker(double p0,double)29*7dd7cddfSDavid du Colombier static proj Ynewyorker(double p0,double){return newyorker(p0);}
Yorthographic(double,double)30*7dd7cddfSDavid du Colombier static proj Yorthographic(double, double){return orthographic();}
Yperspective(double p0,double)31*7dd7cddfSDavid du Colombier static proj Yperspective(double p0,double){return perspective(p0);}
Ypolyconic(double,double)32*7dd7cddfSDavid du Colombier static proj Ypolyconic(double, double){return polyconic();}
Yrectangular(double p0,double)33*7dd7cddfSDavid du Colombier static proj Yrectangular(double p0,double){return rectangular(p0);}
Ysimpleconic(double p0,double p1)34219b2ee8SDavid du Colombier static proj Ysimpleconic(double p0,double p1){return simpleconic(p0,p1);}
Ysinusoidal(double,double)35*7dd7cddfSDavid du Colombier static proj Ysinusoidal(double, double){return sinusoidal();}
Ysp_albers(double p0,double p1)36219b2ee8SDavid du Colombier static proj Ysp_albers(double p0,double p1){return sp_albers(p0,p1);}
Ysp_mercator(double,double)37*7dd7cddfSDavid du Colombier static proj Ysp_mercator(double, double){return sp_mercator();}
Ysquare(double,double)38*7dd7cddfSDavid du Colombier static proj Ysquare(double, double){return square();}
Ystereographic(double,double)39*7dd7cddfSDavid du Colombier static proj Ystereographic(double, double){return stereographic();}
Ytetra(double,double)40*7dd7cddfSDavid du Colombier static proj Ytetra(double, double){return tetra();}
Ytrapezoidal(double p0,double p1)41219b2ee8SDavid du Colombier static proj Ytrapezoidal(double p0,double p1){return trapezoidal(p0,p1);}
Yvandergrinten(double,double)42*7dd7cddfSDavid du Colombier static proj Yvandergrinten(double,double){return vandergrinten();}
433e12c5d1SDavid du Colombier
443e12c5d1SDavid du Colombier struct index index[] = {
45219b2ee8SDavid du Colombier {"aitoff", Yaitoff, 0, picut, 0, 0, 0},
46219b2ee8SDavid du Colombier {"albers", Yalbers, 2, picut, 3, 0, 0},
47219b2ee8SDavid du Colombier {"azequalarea", Yazequalarea, 0, nocut, 1, 0, 0},
48219b2ee8SDavid du Colombier {"azequidistant", Yazequidistant, 0, nocut, 1, 0, 0},
49219b2ee8SDavid du Colombier {"bicentric", Ybicentric, 1, nocut, 0, 0, 0},
50219b2ee8SDavid du Colombier {"bonne", Ybonne, 1, picut, 0, 0, 0},
51219b2ee8SDavid du Colombier {"conic", Yconic, 1, picut, 0, 0, 0},
52219b2ee8SDavid du Colombier {"cylequalarea", Ycylequalarea, 1, picut, 3, 0, 0},
53219b2ee8SDavid du Colombier {"cylindrical", Ycylindrical, 0, picut, 0, 0, 0},
54219b2ee8SDavid du Colombier {"elliptic", Yelliptic, 1, picut, 0, 0, 0},
55219b2ee8SDavid du Colombier {"fisheye", Yfisheye, 1, nocut, 0, 0, 0},
56219b2ee8SDavid du Colombier {"gall", Ygall, 1, picut, 3, 0, 0},
57219b2ee8SDavid du Colombier {"gilbert", Ygilbert, 0, picut, 0, 0, 0},
58219b2ee8SDavid du Colombier {"globular", Yglobular, 0, picut, 0, 0, 0},
59219b2ee8SDavid du Colombier {"gnomonic", Ygnomonic, 0, nocut, 0, 0, plimb},
60219b2ee8SDavid du Colombier {"guyou", Yguyou, 0, guycut, 0, 0, 0},
61219b2ee8SDavid du Colombier {"harrison", Yharrison, 2, nocut, 0, 0, plimb},
62219b2ee8SDavid du Colombier {"hex", Yhex, 0, hexcut, 0, 0, 0},
63219b2ee8SDavid du Colombier {"homing", Yhoming, 1, nocut, 3, 0, hlimb},
64219b2ee8SDavid du Colombier {"lagrange", Ylagrange,0,picut,0, 0, 0},
65219b2ee8SDavid du Colombier {"lambert", Ylambert, 2, picut, 0, 0, 0},
66219b2ee8SDavid du Colombier {"laue", Ylaue, 0, nocut, 0, 0, 0},
67*7dd7cddfSDavid du Colombier {"lune", Ylune, 2, nocut, 0, 0, 0},
68219b2ee8SDavid du Colombier {"mecca", Ymecca, 1, picut, 3, 0, mlimb},
69219b2ee8SDavid du Colombier {"mercator", Ymercator, 0, picut, 3, 0, 0},
70219b2ee8SDavid du Colombier {"mollweide", Ymollweide, 0, picut, 0, 0, 0},
71219b2ee8SDavid du Colombier {"newyorker", Ynewyorker, 1, nocut, 0, 0, 0},
72219b2ee8SDavid du Colombier {"orthographic", Yorthographic, 0, nocut, 0, 0, olimb},
73219b2ee8SDavid du Colombier {"perspective", Yperspective, 1, nocut, 0, 0, plimb},
74219b2ee8SDavid du Colombier {"polyconic", Ypolyconic, 0, picut, 0, 0, 0},
75219b2ee8SDavid du Colombier {"rectangular", Yrectangular, 1, picut, 3, 0, 0},
76219b2ee8SDavid du Colombier {"simpleconic", Ysimpleconic, 2, picut, 3, 0, 0},
77219b2ee8SDavid du Colombier {"sinusoidal", Ysinusoidal, 0, picut, 0, 0, 0},
78219b2ee8SDavid du Colombier {"sp_albers", Ysp_albers, 2, picut, 3, 1, 0},
79219b2ee8SDavid du Colombier {"sp_mercator", Ysp_mercator, 0, picut, 0, 1, 0},
80219b2ee8SDavid du Colombier {"square", Ysquare, 0, picut, 0, 0, 0},
81219b2ee8SDavid du Colombier {"stereographic", Ystereographic, 0, nocut, 0, 0, 0},
82219b2ee8SDavid du Colombier {"tetra", Ytetra, 0, tetracut, 0, 0, 0},
83219b2ee8SDavid du Colombier {"trapezoidal", Ytrapezoidal, 2, picut, 3, 0, 0},
84219b2ee8SDavid du Colombier {"vandergrinten", Yvandergrinten, 0, picut, 0, 0, 0},
853e12c5d1SDavid du Colombier 0
863e12c5d1SDavid du Colombier };
87