|
|
1.1 root 1: #include "map.h"
2:
3: /* p0;p1 evaluated to shut off "not used" diags */
4: static proj Yaitoff(double p0,double p1){p0;p1;return aitoff();}
5: static proj Yalbers(double p0,double p1){return albers(p0,p1);}
6: static proj Yazequalarea(double p0,double p1){p0;p1;return azequalarea();}
7: static proj Yazequidistant(double p0,double p1){p0;p1;return azequidistant();}
8: static proj Ybicentric(double p0,double p1){p1;return bicentric(p0);}
9: static proj Ybonne(double p0,double p1){p1;return bonne(p0);}
10: static proj Yconic(double p0,double p1){p1;return conic(p0);}
11: static proj Ycylequalarea(double p0,double p1){p1;return cylequalarea(p0);}
12: static proj Ycylindrical(double p0,double p1){p0;p1;return cylindrical();}
13: static proj Yelliptic(double p0,double p1){p1;return elliptic(p0);}
14: static proj Yfisheye(double p0,double p1){p1;return fisheye(p0);}
15: static proj Ygall(double p0,double p1){p1;return gall(p0);}
16: static proj Yglobular(double p0,double p1){p0;p1;return globular();}
17: static proj Ygnomonic(double p0,double p1){p0;p1;return gnomonic();}
18: static proj Yguyou(double p0,double p1){p0;p1;return guyou();}
19: static proj Yharrison(double p0,double p1){return harrison(p0,p1);}
20: static proj Yhex(double p0,double p1){p0;p1;return hex();}
21: static proj Yhoming(double p0,double p1){p1;return homing(p0);}
22: static proj Ylagrange(double p0,double p1){p0;p1;return lagrange();}
23: static proj Ylambert(double p0,double p1){return lambert(p0,p1);}
24: static proj Ylaue(double p0,double p1){p0;p1;return laue();}
25: static proj Yloxodromic(double p0,double p1){p1;return loxodromic(p0);}
26: static proj Ymecca(double p0,double p1){p1;return mecca(p0);}
27: static proj Ymercator(double p0,double p1){p0;p1;return mercator();}
28: static proj Ymollweide(double p0,double p1){p0;p1;return mollweide();}
29: static proj Yortelius(double p0,double p1){return ortelius(p0,p1);}
30: static proj Yorthographic(double p0,double p1){p0;p1;return orthographic();}
31: static proj Yperspective(double p0,double p1){p1;return perspective(p0);}
32: static proj Ypolyconic(double p0,double p1){p0;p1;return polyconic();}
33: static proj Yrectangular(double p0,double p1){p1;return rectangular(p0);}
34: static proj Ysimpleconic(double p0,double p1){return simpleconic(p0,p1);}
35: static proj Ysinusoidal(double p0,double p1){p0;p1;return sinusoidal();}
36: static proj Ysp_albers(double p0,double p1){return sp_albers(p0,p1);}
37: static proj Ysp_mercator(double p0,double p1){p0;p1;return sp_mercator();}
38: static proj Ysquare(double p0,double p1){p0;p1;return square();}
39: static proj Ystereographic(double p0,double p1){p0;p1;return stereographic();}
40: static proj Ytetra(double p0,double p1){p0;p1;return tetra();}
41: static proj Ytrapezoidal(double p0,double p1){return trapezoidal(p0,p1);}
42: static proj Yvandergrinten(double p0,double p1){p0;p1;return vandergrinten();}
43: static proj Ywreath(double p0,double p1){return wreath(p0,p1);}
44:
45: struct index index[] = {
46: {"aitoff", Yaitoff, 0, picut, 0, 0},
47: {"albers", Yalbers, 2, picut, 3, 0},
48: {"azequalarea", Yazequalarea, 0, nocut, 1, 0},
49: {"azequidistant", Yazequidistant, 0, nocut, 1, 0},
50: {"bicentric", Ybicentric, 1, nocut, 0, 0},
51: {"bonne", Ybonne, 1, picut, 0, 0},
52: {"conic", Yconic, 1, picut, 0, 0},
53: {"cylequalarea", Ycylequalarea, 1, picut, 3, 0},
54: {"cylindrical", Ycylindrical, 0, picut, 0, 0},
55: {"elliptic", Yelliptic, 1, nocut, 0, 0},
56: {"fisheye", Yfisheye, 1, nocut, 0, 0},
57: {"gall", Ygall, 1, picut, 3, 0},
58: {"globular", Yglobular, 0, picut, 0, 0},
59: {"gnomonic", Ygnomonic, 0, nocut, 0, 0},
60: {"guyou", Yguyou, 0, guycut, 0, 0},
61: {"harrison", Yharrison, 2, nocut, 0, 0},
62: {"hex", Yhex, 0, hexcut, 0, 0},
63: {"homing", Yhoming, 1, picut, 0, 0},
64: {"lagrange", Ylagrange,0,picut,0, 0},
65: {"lambert", Ylambert, 2, picut, 0, 0},
66: {"laue", Ylaue, 0, nocut, 0, 0},
67: {"loxodromic", Yloxodromic, 1, loxcut, 0, 0},
68: {"mecca", Ymecca, 1, picut, 0, 0},
69: {"mercator", Ymercator, 0, picut, 0, 0},
70: {"mollweide", Ymollweide, 0, picut, 0, 0},
71: {"ortelius", Yortelius, 2, picut, 3, 0},
72: {"orthographic", Yorthographic, 0, nocut, 0, 0},
73: {"perspective", Yperspective, 1, nocut, 0, 0},
74: {"polyconic", Ypolyconic, 0, picut, 0, 0},
75: {"rectangular", Yrectangular, 1, picut, 3, 0},
76: {"simpleconic", Ysimpleconic, 2, picut, 3, 0},
77: {"sinusoidal", Ysinusoidal, 0, picut, 0, 0},
78: {"sp_albers", Ysp_albers, 2, picut, 3, 1},
79: {"sp_mercator", Ysp_mercator, 0, picut, 0, 1},
80: {"square", Ysquare, 0, picut, 0, 0},
81: {"stereographic", Ystereographic, 0, nocut, 0, 0},
82: {"tetra", Ytetra, 0, tetracut, 0, 0},
83: {"trapezoidal", Ytrapezoidal, 2, picut, 3, 0},
84: {"vandergrinten", Yvandergrinten, 0, picut, 0, 0},
85: {"wreath", Ywreath, 2, picut, 3, 0 },
86: 0
87: };
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.