随笔分类 - GIS
摘要:关键代码 ``` var gcj02Data = gcoord.transform(geoJsonObject, gcoord.WGS84, gcoord.GCJ02); ``` 具体见github https://github.com/hujiulong/gcoord
阅读全文
摘要:当Leaflet直接使用leaflet.ChineseTmsProviders.js加载多种底图的时候,与自己使用的坐标点存在坐标系差异,要么对数据进行坐标转换与底图一致,要么对底图进行纠偏 github上的插件Leaflet.InternetMapCorrection,可以直接处理,非常方便,见h
阅读全文
摘要:netcdf sfc_pres_temp { dimensions: latitude = 6 ; //纬度轴 longitude = 12 ; //经度轴 variables: float latitude(latitude) ; //坐标变量,存储具体纬度 latitude:units = “d
阅读全文
摘要:参考博客: 墨卡托投影 https://blog.csdn.net/mygisforum/article/details/13295223 墨卡托投影推导 https://blog.csdn.net/YYMHQE123/article/details/105528573
阅读全文
摘要:满足条件: 一阶: 二阶: 三阶: 参考博客:https://www.jianshu.com/p/8f82db9556d2
阅读全文
摘要:基于echarts的3D地图进行,直接将这代码粘贴到echarts的demo中即可呈现效果 var mygeo = { // 标准的geojson格式 "type": "FeatureCollection", "features": [ { "type":"Feature", "properties
阅读全文
摘要:参考链接:https://www.jianshu.com/p/852d7ad081b3 GeoJSON is a format for encoding a variety of geographic data structures. 格式 { "type": "Feature", "geometr
阅读全文