随笔分类 -  GIS

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