createCoordinate()
createCoordinate(
initSystem,initFormat): (input) =>Readonly<Coordinate>
Create a coordinate object enabling: lexing, parsing, validation, and formatting in alternative systems and formats. The system and format will be used for validation and eventually for output as defaults if no alternatives are provided.
Parameters
initSystem
CoordinateSystem = coordinateSystems.dd
dd, ddm, dms, mgrs, or utm of coordinateSystems
initFormat
"LATLON" | "LONLAT"
Returns
(
input):Readonly<Coordinate>
Parameters
input
string
Returns
Readonly<Coordinate>
Remarks
pure function
Example
const create = createCoordinate(coordinateSystems.dd, 'LATLON')
const create = createCoordinate(coordinateSystems.ddm, 'LONLAT')