UNPKG

s2-tools

Version:

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

13 lines 766 B
import { Transformer } from '../../proj4'; import type { GeoKeyDirectory, GridReader } from '.'; import type { ProjectionTransformDefinition } from '../../proj4'; /** * Builds the projection transformer for a GeoTIFF image * @param geoKeys - the geo-keys pulled from the image metadata * @param gridStore - the grid readers * @param definitions - an array of projection definitions for the transformer if needed * @param epsgCodes - a record of EPSG codes to use for the transformer if needed * @returns - the projection transformer */ export declare function buildTransform(geoKeys?: GeoKeyDirectory, gridStore?: GridReader[], definitions?: ProjectionTransformDefinition[], epsgCodes?: Record<string, string>): Transformer; //# sourceMappingURL=proj.d.ts.map