1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-07 12:05:14 +01:00
GPXSee/src/map/utm.h
Martin Tůma a48b46d0fb Refactoring
Moved Projection::Method and Projection::Setup to the Conversion class
2024-03-19 22:39:42 +01:00

15 lines
178 B
C++

#ifndef UTM_H
#define UTM_H
#include "conversion.h"
class Coordinates;
namespace UTM
{
int zone(const Coordinates &c);
Conversion::Setup setup(int zone);
}
#endif // UTM_H