aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/map/libmap/laue.c
blob: 06c5f3a7f33da200138bb4e0dbf88878c14b354d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <u.h>
#include <libc.h>
#include "map.h"


static int
Xlaue(struct place *place, double *x, double *y)
{
	double r;
	if(place->nlat.l<PI/4+FUZZ)
		return(-1);
	r = tan(PI-2*place->nlat.l);
	if(r>3)
		return(-1);
	*x = - r * place->wlon.s;
	*y = - r * place->wlon.c;
	return(1);
}

proj
laue(void)
{
	return(Xlaue);
}