/********************************************************/
/* ykj.h This file contains  functions for coordinate	*/
/* conversion YKJ coordinates.							*/
/* Alexander Kolesnikov.				*/
/********************************************************/

#ifndef YKJ_INCLUDED
#define YKJ_INCLUDED

/*------------------------------------------------------*/

#include "geo_def.h"

/*------------------------------------------------------*/

void YKJ_ForwardTransform(TCoordinate *Coordinate, TProjected *Projected,
						  int nCorrection);

void YKJ_InverseTransform(TProjected *Projected, TCoordinate *Coordinate,
						  int nCorrection);

int YKJ_calcZoneNum(TCoordinate *Coordinate);

#endif /*YKJ_INCLUDED*/

