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 450 B
import CrsCoordinate from '../crs_coordinate'; import CrsProjection from '../crs_projection'; /** * Intended to be an internal class, i.e. not exported from the library * (i.e. not exported from the file 'src/index.ts') */ export default interface TransformStrategy { /** @virtual */ transform(sourceCoordinate: CrsCoordinate, targetCrsProjection: CrsProjection): CrsCoordinate; } //# sourceMappingURL=transform_strategy.d.ts.map