gps-transf

1.0.6 • Public • Published

gps-transf

This is A Map coordinate conversion tool.

The coordinate conversion tool provides the conversion between Baidu coordinate (bd09), National Survey Bureau coordinate (Mars coordinate, gcj02) and WGS84 coordinate system.

How use

node.js

let gps=require('gps-transf');
console.log(gps.bd09ToGcj02(116.228345,39.944812));

brower

import gps from 'gps-transf';
console.log(gps.bd09ToGcj02(116.228345,39.944812));

APIs

    //Transformation between Baidu coordinate system (bd-09) and Mars coordinate system (gcj-02)
    bd09togcj02(lon,lat):Array[lon,lat];

    //Transformation between Mars coordinate system (gcj-02) and Baidu coordinate system (bd-09)
    gcj02ToBd09(lon,lat):Array[lon,lat];
    
    //WGS84 to GCj02
    wgs84ToGcj02(lon,lat):Array[lon,lat];
    
    //GCJ02 to WGS84
    wgcj02ToWgs84(lon,lat):Array[lon,lat];
    

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i gps-transf

      Weekly Downloads

      0

      Version

      1.0.6

      License

      MIT

      Unpacked Size

      6.49 kB

      Total Files

      4

      Last publish

      Collaborators

      • lanmeng2022