mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
13 lines
158 B
C++
13 lines
158 B
C++
#ifndef UTM_H
|
|
#define UTM_H
|
|
|
|
#include "projection.h"
|
|
|
|
namespace UTM
|
|
{
|
|
int zone(const Coordinates &c);
|
|
Projection::Setup setup(int zone);
|
|
}
|
|
|
|
#endif // UTM_H
|