ref: 6c0e2e74e353f73e72391e76b5d875d0c3637e7c
dir: /sys/src/cmd/map/libmap/rectangular.c/
#include <u.h>
#include <libc.h>
#include "map.h"
static double scale;
static int
Xrectangular(struct place *place, double *x, double *y)
{
*x = -scale*place->wlon.l;
*y = place->nlat.l;
return(1);
}
proj
rectangular(double par)
{
scale = cos(par*RAD);
if(scale<.1)
return 0;
return(Xrectangular);
}