1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/utm.h

14 lines
177 B
C++

#ifndef UTM_H
#define UTM_H
#include "projection.h"
class UTM
{
public:
static int zone(const Coordinates &c);
static Projection::Setup setup(int zone);
};
#endif // UTM_H