/********************************************************/
/* utm.h This file contains  functions for coordinate	*/
/* conversion UTM coordinates.							*/
/* Alexander Kolesnikov.				*/
/********************************************************/

#ifndef UTM_INCLUDED
#define UTM_INCLUDED

/*------------------------------------------------------*/

#include "geo_def.h"

/*------------------------------------------------------*/

void UTM_ForwardTransform(TCoordinate *Coordinate,
						   TProjected *Projected);

void UTM_InverseTransform(TProjected *Projected,
						   TCoordinate *Coordinate);

int UTM_calcZoneNum(TCoordinate *Coordinate);

#endif /*UTM_INCLUDED*/
