# node-wmtiff **Repository Path**: mirrors_mapbox/node-wmtiff ## Basic Information - **Project Name**: node-wmtiff - **Description**: Utilililility to reproject tiff images to web mercator - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-09 - **Last Updated**: 2025-11-08 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Web Mercator Tiff Reproject a TIFF into web mercator using [`node-gdal`](https://github.com/naturalatlas/node-gdal/). [![Build Status](https://travis-ci.com/mapbox/node-wmtiff.svg?branch=master)](https://travis-ci.com/mapbox/node-wmtiff) ### Usage On the command line: wmtiff [srcpath] [dstpath] In node: var wmtiff = require('wmtiff'); var path = require('path'); var srcpath = path.join('path', 'to', 'source', 'image'); var dstpath = path.join('path', 'to', 'destination', 'image'); wmtiff.reproject(srcpath, dstpath);