UNPKG

geospatialdraw

Version:
9 lines (8 loc) 218 B
type UTM = { easting: number; northing: number; zone: number; hemisphere: 'N' | 'S'; }; declare const utmToString: ({ easting, northing, zone, hemisphere }: UTM) => string; export { UTM, utmToString };