/** @packageDocumentation * @module OrbitGT */ declare type int32 = number; import { CRS } from "./CRS"; /** * Class OnlineRegistry downloads the CRS definitions from an online server. * * @version 1.0 March 2020 */ /** @internal */ export declare class OnlineRegistry { /** The name of this module */ private static readonly MODULE; /** The template URL */ private _urlTemplate; /** The dialect of WKT to parse */ private _dialect; /** * Open the OrbitGT online registry, see https://spatialreference.org/. * @return the registry. */ static openOrbitGT(): OnlineRegistry; /** * Create a new online registry. * @param urlTemplate the template URL in which [epsgCode] will be replaced by the EPSG CRS code. * @param dialect the dialect of WKT to parse. */ private constructor(); /** * Get a CRS. * @param epsgCode the EPSG code of the CRS to get. * @return the CRS. */ getCRS(epsgCode: int32): Promise; } export {}; //# sourceMappingURL=OnlineRegistry.d.ts.map