1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 23:03:22 +02:00
GPXSee/src/map/utm.h

14 lines
177 B
C
Raw Normal View History

#ifndef UTM_H
#define UTM_H
#include "projection.h"
2018-01-08 23:47:45 +01:00
class UTM
{
public:
2017-11-26 18:54:03 +01:00
static int zone(const Coordinates &c);
2018-01-08 23:47:45 +01:00
static Projection::Setup setup(int zone);
};
#endif // UTM_H