blob: 4d01bc23885336a3a932c6be0bc2736aa68d21a1 [file] [log] [blame]
#include <u.h>
#include <libc.h>
#include "map.h"
int
Xcylindrical(struct place *place, double *x, double *y)
{
if(fabs(place->nlat.l) > 80.*RAD)
return(-1);
*x = - place->wlon.l;
*y = place->nlat.s / place->nlat.c;
return(1);
}
proj
cylindrical(void)
{
return(Xcylindrical);
}