proj4
Version:
Proj4js is a JavaScript library to transform point coordinates from one coordinate system to another, including datum transformations.
33 lines (32 loc) • 779 B
TypeScript
/**
* @typedef {Object} LocalThis
* @property {number} es
* @property {number} sin_p12
* @property {number} cos_p12
* @property {number} a
* @property {number} f
*/
/** @this {import('../defs.js').ProjectionDefinition & LocalThis} */
export function init(this: import("../defs.js").ProjectionDefinition & LocalThis): void;
export class init {
sin_p12: number;
cos_p12: number;
f: number;
}
export function forward(p: any): any;
export function inverse(p: any): any;
export const names: string[];
declare namespace _default {
export { init };
export { forward };
export { inverse };
export { names };
}
export default _default;
export type LocalThis = {
es: number;
sin_p12: number;
cos_p12: number;
a: number;
f: number;
};