当前位置:网站首页>3857墨卡托坐标系转换为4326 (WGS84)经纬度坐标
3857墨卡托坐标系转换为4326 (WGS84)经纬度坐标
2022-07-06 03:03:00 【不知言】
mercatorTolonlat(mercator) {
var lonlat = [0, 0]
var x = mercator[0] / 20037508.34 * 180
var y = mercator[1] / 20037508.34 * 180
y = 180 / Math.PI * (2 * Math.atan(Math.exp(y * Math.PI / 180)) - Math.PI / 2)
lonlat[0] = x
lonlat[1] = y
return lonlat
}
地理坐标系4326–投影坐标系3857/2436
空间参考坐标系查询网址:https://spatialreference.org/和http://epsg.io/
EPSG:4326 (WGS84) 地理坐标系,WGS84 是目前最流行的地理坐标系统。在国际上,每个坐标系统都会被分配一个 EPSG 代码,EPSG:4326 就是 WGS84 的代码。
GPS是基于WGS84的,所以通常我们得到的坐标数据都是WGS84的。一般存储数据时,仍然按WGS84存储。
EPSG:3857 (Pseudo-Mercator) 伪墨卡托投影,也被称为球体墨卡托,Web Mercator。它是基于墨卡托投影的,把 WGS84坐标系投影到正方形上。
EPSG:2436,北京范围的投影坐标系;
北京的东西范围:Beijing: 115.7°E - 117.4°E;
Beijing 1954 / 3-degree Gauss-Kruger CM 117E (Google it);
WGS84 Bounds: 115.5000, 22.6600, 118.5000, 49.8800;
Projected Bounds: 345818.6654, 2507707.7737, 654181.3346, 5528676.1748;
Scope: Large scale topographic mapping, cadastral and engineering survey.;
Last Revised: July 22, 2006;
Area: China - 115.5°E to 118.5°E.
查询与北京/中国有关的坐标系
SELECT * FROM spatial_ref_sys WHERE srtext ~* 'beijing';
SELECT * FROM spatial_ref_sys WHERE srtext ~* 'china';
SELECT ST_AsText(ST_Transform(ST_GeomFromText('POLYGON((743238 2967416,743238 2967450,743265 2967450,743265.625 2967416,743238 2967416))',2249),4326)) As wgs_geom;
SELECT ST_AsEWKT(ST_Transform(ST_GeomFromEWKT('SRID=2249;CIRCULARSTRING(743238 2967416 1,743238 2967450 2,743265 2967450 3,743265.625 2967416 3,743238 2967416 4)'),4326));
边栏推荐
- 球面透镜与柱面透镜
- Modeling specifications: naming conventions
- Software design principles
- [ruoyi] enable Mini navigation bar
- 如何做好功能测试
- 华为、H3C、思科命令对比,思维导图形式从基础、交换、路由三大方向介绍【转自微信公众号网络技术联盟站】
- tcpdump: no suitable device found
- Sign SSL certificate as Ca
- DDoS "fire drill" service urges companies to be prepared
- PMP practice once a day | don't get lost in the exam -7.5
猜你喜欢
How to do function test well
解决:AttributeError: ‘str‘ object has no attribute ‘decode‘
Apt installation ZABBIX
Codeforces 5 questions par jour (1700 chacune) - jour 6
【Unity3D】GUI控件
Reverse repackaging of wechat applet
PMP每日一练 | 考试不迷路-7.5
Analyze 菜单分析
Era5 reanalysis data download strategy
2345 file shredding, powerful file deletion tool, unbound pure extract version
随机推荐
Qt发布exe软件及修改exe应用程序图标
手写数据库客户端
CSP date calculation
Is there a completely independent localization database technology
How to do function test well
如何做好功能测试
Microservice registration and discovery
Apt installation ZABBIX
OCR文字識別方法綜述
[matlab] access of variables and files
Installation and use tutorial of cobaltstrike-4.4-k8 modified version
Pat 1046 shortest distance (20 points) simulation
How to improve the enthusiasm of consumers when the member points marketing system is operated?
JS events (add, delete) and delegates
Taobao focus map layout practice
[ruoyi] enable Mini navigation bar
故障分析 | MySQL 耗尽主机内存一例分析
微服务间通信
Atcoder beginer contest 233 (a~d) solution
My C language learning records (blue bridge) -- files and file input and output