码迷,mamicode.com
首页 > Web开发 > 详细

Web Mercator Non-Conformal, Non-Mercator

时间:2016-11-22 02:55:43      阅读:284      评论:0      收藏:0      [点我收藏+]

标签:分享   tox   otto   splay   nbsp   double   clip   lin   form   

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

 

public static void XYtoGL(Coordinate coordinate)
    {
        double R  = 6378137;
        coordinate.x = coordinate.x / Math.PI * 180.0 / R;        
        coordinate.y =  ((Math.atan(Math.exp(coordinate.y / R)) - Math.PI/4) / Math.PI * 180.0)*2;        
    }

public static void GLtoXY(Coordinate coordinate)
    {
        double R  = 6378137;
        coordinate.x = R * (coordinate.x - 0)/180 * Math.PI;
        coordinate.y = R * Math.log(Math.tan(Math.PI/4+coordinate.y/2*Math.PI/180));
    }

技术分享

技术分享

技术分享

技术分享

Web Mercator Non-Conformal, Non-Mercator

标签:分享   tox   otto   splay   nbsp   double   clip   lin   form   

原文地址:http://www.cnblogs.com/gispathfinder/p/6087556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!