The Miller cylindrical projection is a modified Mercator projection, proposed by Osborn Maitland Miller in 1942.
Classification: Neither conformal nor equal area cylindrical
Available forms: Forward and inverse spherical
Defined area: Global, but best used near the equator
Alias: mill
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
+proj=mill Copy
+proj=mill
+lon_0
0
+R
+x_0
+y_0
Using Central meridian 90°W:
$ echo -100 35 | proj +proj=mill +lon_0=90w-1113194.91 4061217.24 Copy
$ echo -100 35 | proj +proj=mill +lon_0=90w-1113194.91 4061217.24
$$x = \lambda$$ $$y = 1.25 * \ln \left[ \tan \left(\frac{\pi}{4} + 0.4 * \phi \right) \right]$$
$$\lambda = x$$ $$\phi = 2.5 * ( \arctan \left[ e^{0.8 * y} \right] - \frac{\pi}{4} )$$
Preps an MillerCylindrical projection
Optional
projection specific parameters
MillerCylindrical forward equations--mapping lon-lat to x-y
lon-lat WGS84 point
MillerCylindrical inverse equations--mapping x-y to lon-lat
MillerCylindrical point
Miller Cylindrical
The Miller cylindrical projection is a modified Mercator projection, proposed by Osborn Maitland Miller in 1942.
Classification: Neither conformal nor equal area cylindrical
Available forms: Forward and inverse spherical
Defined area: Global, but best used near the equator
Alias: mill
Domain: 2D
Input type: Geodetic coordinates
Output type: Projected coordinates
Projection String
Required Parameters
Optional Parameters
+lon_0
: Longitude of projection center. Defaults to0
.+R
: Radius of the sphere.+x_0
: False easting. Defaults to0
.+y_0
: False northing. Defaults to0
.Usage Example
Using Central meridian 90°W:
Mathematical Definition
Forward projection:
$$x = \lambda$$ $$y = 1.25 * \ln \left[ \tan \left(\frac{\pi}{4} + 0.4 * \phi \right) \right]$$
Inverse projection:
$$\lambda = x$$ $$\phi = 2.5 * ( \arctan \left[ e^{0.8 * y} \right] - \frac{\pi}{4} )$$
Further reading