@spatial/projection
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

@spatial/projection

toMercator

Converts a WGS84 GeoJSON object into Mercator (EPSG:900913) projection

Parameters

  • geojson (GeoJSON | Position) WGS84 GeoJSON object
  • options Object? Optional parameters
    • options.mutate boolean allows GeoJSON input to be mutated (significant performance increase if true) (optional, default false)

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

  • geojson (GeoJSON | Position) Mercator GeoJSON object
  • options Object? Optional parameters
    • options.mutate boolean allows GeoJSON input to be mutated (significant performance increase if true) (optional, default false)

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 @spatial/projection

Or install the Turf module that includes it as a function:

$ npm install @turf/turf

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    3
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 2.0.0
    3
  • 1.0.5
    0
  • 1.0.4
    0
  • 1.0.3
    0

Package Sidebar

Install

npm i @spatial/projection

Weekly Downloads

3

Version

2.0.0

License

MIT

Unpacked Size

18.4 kB

Total Files

7

Last publish

Collaborators

  • normanbreau
  • tpnormanbreau