summaryrefslogblamecommitdiffstats
path: root/friendfinder/util/projection.h
blob: d1509acc061541ffd43812f6974cae632461bce7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                         
#ifndef _PROJECTION_H
#define _PROJECTION_H
enum
{
	PROJECTION_UTM,
	PROJECTION_MERC
};

int project_latlon(double lat, double lon, int *e, int *n, int type);
int project_latlon_inv(int e, int n, double *lat, double *lon, int type);
#endif