UNPKG

@programmerare/sweden_crs_transformations

Version:

TypeScript/JavaScript library for transformation of geographic coordinates between WGS84 and the Swedish coordinate reference systems SWEREF99 and RT90

11 lines 456 B
/** * Helper class for the 'GaussKreuger' class. * This class was not part of the corresponding original C#.NET class in 'MightyLittleGeodesy' * but the class 'GaussKreuger' has later been changed to return this 'LatLon' instead of array 'double[]' */ export default class LatLon { readonly yLatitude: number; readonly xLongitude: number; constructor(yLatitude: number, xLongitude: number); } //# sourceMappingURL=lat_lon.d.ts.map