• 大小: 4.10KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2020-12-14
  • 语言: C#
  • 标签: 转换  C#  java  百度  js  

资源简介


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApp1
{

    public struct CTPoint {
        public double lng;
        public double lat;
    }
    public class CoordTransform
    {
        static double x_PI = 3.14159265358979324 * 3000.0 / 180.0;
        static double PI = 3.1415926535897932384626;
        static double a = 6378245.0;
        static double ee = 0.00669342162296594323;

        /**
         * 百度坐标系 (BD-09) 与 火星坐标系 (GCJ-02)的转换
         * 
         * @param lng 经度
         * @param lat 纬度
         */
        public static CTPoint bd09togcj02(double bd_lon double bd_lat)
        {
            double x = bd_lon - 0.0065;
            double y = bd_lat - 0.006;
 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       4333  2018-09-17 17:16  CoordTransform.java

     文件       5061  2018-09-17 17:06  coordtransform.js

     文件       5719  2018-09-17 17:35  CoordTransform.cs

----------- ---------  ---------- -----  ----

                15113                    3


评论

共有 条评论