/********************************************************/
/* kkj.h This file contains  functions for coordinate	*/
/* conversion KKJ coordinates.							*/
/* Alexander Kolesnikov.				*/
/********************************************************/

#ifndef KKJ_INCLUDED
#define KKJ_INCLUDED

/*------------------------------------------------------*/

#include "geo_def.h"

/*------------------------------------------------------*/

void KKJ_ForwardTransform(TCoordinate *Coordinate, TProjected *Projected,
						  int nCorrection);

void KKJ_InverseTransform(TProjected *Projected, TCoordinate *Coordinate, 
						  int nCorrection);

int KKJ_calcZoneNum(TCoordinate *Coordinate);

#endif /*KKJ_INCLUDED*/

