Package Exports
- @turf/projection
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@turf/projection) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@turf/projection
toMercator
Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection
Parameters
geojsonGeoJSON WGS84 GeoJSON objectmutate[boolean] allows GeoJSON input to be mutated (significant performance increase if true) (optional, defaultfalse)
Examples
var pt = turf.point([-71,41]);
var converted = turf.toMercator(pt);
//addToMap
var addToMap = [pt, converted];Returns GeoJSON true/false
toWgs84
Converts a Mercator (EPSG:900913) GeoJSON object into WGS84 projection
Parameters
geojsonGeoJSON Mercator GeoJSON objectmutate[boolean] allows GeoJSON input to be mutated (significant performance increase if true) (optional, defaultfalse)
Examples
var pt = turf.point([-7903683.846322424, 5012341.663847514]);
var converted = turf.toWgs84(pt);
//addToMap
var addToMap = [pt, converted];Returns GeoJSON true/false
This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.
Installation
Install this module individually:
$ npm install @turf/projectionOr install the Turf module that includes it as a function:
$ npm install @turf/turf