shithub: riscv

ref: 47682ee42a1f686dbd3aa9de7375c16f7d3d95e8
dir: /sys/src/cmd/map/libmap/azequidist.c/

View raw version
#include <u.h>
#include <libc.h>
#include "map.h"

int
Xazequidistant(struct place *place, double *x, double *y)
{
	double colat;
	colat = PI/2 - place->nlat.l;
	*x = -colat * place->wlon.s;
	*y = -colat * place->wlon.c;
	return(1);
}

proj
azequidistant(void)
{
	return(Xazequidistant);
}