UNPKG

gdal3.js

Version:

gdal3.js is a port of Gdal applications (**gdal_translate**, **ogr2ogr**, **gdal_rasterize**, **gdalwarp**, **gdaltransform**) to Webassembly. It allows you to convert raster and vector geospatial data to various formats and coordinate systems.

13 lines (9 loc) 246 B
export const INPUTPATH = '/input'; export const OUTPUTPATH = '/output'; let realOutputPath = OUTPUTPATH; export function getRealOutputPath() { return realOutputPath; } export function setRealOutputPath(path) { realOutputPath = path; }