UNPKG

gis-tools-ts

Version:

A collection of geospatial tools primarily designed for WGS84, Web Mercator, and S2.

8 lines 250 B
import type { ProjectionTransform } from '../projections/index.js'; /** Step of a transformation pipeline */ export interface Step { pj?: ProjectionTransform; omit_fwd: boolean; omit_inv: boolean; } //# sourceMappingURL=pipelines.d.ts.map