在Web前端基于CAD图实现等值线在线分析

打印 上一主题 下一主题

主题 803|帖子 803|积分 2409

意义

等值线是GIS制图中常见的功能。在实际中经常需要基于CAD图纸对数据进行等值线分析。等值线的类型主要有:等高线、等深线、等温线(等气温线、等水温线)、等压线(水平面等压线、垂直面等压线)、等降水量线、等太阳辐射量线、等盐度线、等PH值线、等太阳高度线、等潜水位线、等承压水位线等。
通过分析等值线,我们可以判读等高线来判断地形的坡度的陡与缓,确定山脉的走向;通过判读等深线来判断海洋地形的种类如大陆架、海沟、海盆、海岭、海底火山等;通过判读大气等压线来判断气压中心的名称:如气旋、反气旋、高压脊、低压糟、轮廓;判断不同部位的天气特点,风向与风力大小;通过判读大气等温线来判断所在地的南北半球、季节与天气;通过判读等降水量线结合具体的地形轮廓判定山地的迎风坡与背风坡等;通过判读人口密度等值线分析某地区人口分布的规律及其影响的自然、历史、社会、经济诸因素。
实现原理

等值线的原理

  • 等值性或同距性原理 在等值线图中,相邻的两条等值线要么等值,要么同距。
  • 低高低和高低高原理 低值凸向高值,凸处的值变低 高值凸向低值,凸处的值变高
  • 疏差小和密差大原理 等值线越稀疏,单位距离的差值越小 等值线越 密集,单位距离的差值越大
     
用程序绘制等值线的方法一般有:
实现

先上效果图

以下的实现代码已开源至github。 地址: https://github.com/vjmap/vjmap-playground/blob/main/src/11geo_%E5%87%A0%E4%BD%95%E8%AE%A1%E7%AE%97/geoVectorContour.js
 
实现步骤:
(1) Web端在线打开CAD图
如何在Web网页端展示CAD图形(唯杰地图云端图纸管理平台 https://vjmap.com/app/cloud),这个在前面的博文中已讲过,这里不再重复,有需要的朋友可下载工程源代码研究下。
(2) 利用数据生成等值线
为了防止生成等值线的过程造成页面卡顿,这里把算法放到了webworker中来进行计算
  1. //生成测试数据
  2.         let dataMinValue = 10; // 数据最小值
  3.         let dataMaxValue = 500; // 数据最大值
  4.         let dataset = {
  5.             "type" : "FeatureCollection",
  6.             "features" : []
  7.         };
  8.         // 区间颜色值
  9.         let colors = ["#006837", "#1a9850", "#66bd63", "#a6d96a", "#d9ef8b", "#ffffbf","#fee08b",
  10.             "#fdae61", "#f46d43", "#d73027", "#a50026"];
  11.         for (let i = 0; i < 100; i++) {
  12.             let feature={
  13.                 "type" : "Feature",
  14.                 "properties" : {
  15.                     "value" : vjmap.randInt(dataMinValue, dataMaxValue) // 在最大值最小值范围内随机生成一个测试数据
  16.                 },
  17.                 "geometry" : {
  18.                     "type" : "Point",
  19.                     "coordinates" : map.toLngLat(mapBounds.randomPoint())
  20.                 }
  21.             };
  22.             dataset.features.push(feature);
  23.         }
  24.         let contoursSize = 20; // 等值面分级区间数,这里设置为20,可以自行设置
  25.         const createContour = async (dataset, contoursSize, propField, colors, dataMinValue, dataMaxValue, maxHeight, model) => {
  26.             let contours = [];
  27.             for(let i = 0; i < contoursSize; i++) {
  28.                 contours.push(dataMinValue + (dataMaxValue - dataMinValue) * i /  (contoursSize - 1));
  29.             }
  30.             let interpolateInput = [], interpolateOutput = [];
  31.             for(let i = 0; i < colors.length; i++) {
  32.                 interpolateInput.push(i / (colors.length - 1)); // 插值输入值,这里输入0-1之间的比例
  33.                 interpolateOutput.push(colors[i]) // 插值输出值,这里输入0-1之间的比例对应的颜色值
  34.             }
  35.             // 启动webworker计算函数
  36.             let createContourWorker = vjmap.WorkerProxy(vjmap.vectorContour);
  37.             let { grid, contour } = await createContourWorker(dataset, propField, contours, {
  38.                 model: model || 'exponential',
  39.                 sigma2:0,
  40.                 alpha:100
  41.             });
  42.             // 根据比例插值颜色
  43.             const mapProgressToValues = value => vjmap.interpolate(
  44.                 interpolateInput,
  45.                 interpolateOutput,
  46.                 { ease: vjmap.linear }
  47.             )(value)
  48.             // 把原数据的颜色也设置下,绘制marker需要
  49.             dataset.features.forEach(f => f.properties.color = mapProgressToValues((f.properties.value - dataMinValue) / (dataMaxValue - dataMinValue)))
  50.             let h = maxHeight; // 设置最大值要拉伸的高度
  51.             for(let i = 0; i < contour.features.length; i++) {
  52.                 let prop = contour.features[i].properties;
  53.                 let r = (prop.value - dataMinValue) / (dataMaxValue - dataMinValue);
  54.                 prop.color = mapProgressToValues(r); // 插值出颜色值
  55.                 prop.height = h * r; // 插值出要拉伸的高度值
  56.             }
  57.             return contour;
  58.         }
  59.         let maxHeight = map.pixelToHeight(100, map.getZoom()); // 设置最大值要拉伸的高度
  60.         let contour = await createContour(dataset, contoursSize, "value" /*geojson的哪个属性值用于计算*/, colors, dataMinValue, dataMaxValue, maxHeight);
  61. (3)绘制原始数据和生成好的等值线
  62. let markers = null;
  63.         const addMarkers = ()=> {
  64.             if (markers) return;
  65.             markers = dataset.features.map(f => {
  66.                 // 再随机生成不同样式的
  67.                 let _marker = new vjmap.DiffusedApertureMarker({
  68.                     lngLat: f.geometry.coordinates,
  69.                     text: f.properties.value.toFixed(0)
  70.                 }, {
  71.                     // 可以给不同的属性,如宽度,颜色,字体
  72.                     width: 10,
  73.                     colors: [f.properties.color, vjmap.randomColor()],
  74.                     textFontSize: 14,
  75.                     textColor: f.properties.color
  76.                 }).createMarker();
  77.                 _marker.addTo(map)
  78.                 return _marker
  79.             })
  80.         }
  81.         const removeMarkers = ()=> {
  82.             if (!markers) return;
  83.             for(let i = markers.length - 1; i >= 0; i--) {
  84.                 markers[i].remove();
  85.             }
  86.             markers = null;
  87.         }
  88.         let polyline = null;
  89.         const addPolyline = ()=> {
  90.             if (polyline) return;
  91.             polyline = new vjmap.Polyline({
  92.                 data: contour,
  93.                 lineColor: ['case', ['to-boolean', ['feature-state', 'hover']], '#00ffff', ['get', 'color']],
  94.                 isHoverPointer: true,
  95.                 isHoverFeatureState: true
  96.             });
  97.             polyline.addTo(map);
  98.             polyline.clickPopup(f => `<h3>值: ${f.properties.value.toFixed(2)}</h3>Color: ${f.properties.color}`, { anchor: 'bottom' });
  99.         }
  100.         const removePolyline = ()=> {
  101.             if (!polyline) return;
  102.             polyline.remove();
  103.             polyline = null;
  104.         }
复制代码
  

(4)生成等值面
  1. let polygon = null;
  2.         const addPolygon = ()=> {
  3.             if (polygon) return;
  4.             polygon = new vjmap.Polygon({
  5.                 data: contour,
  6.                 fillColor: ['case', ['to-boolean', ['feature-state', 'hover']], '#00ffff', ['get', 'color']],
  7.                 fillOpacity: 0.9,
  8.                 isHoverPointer: true,
  9.                 isHoverFeatureState: true
  10.             });
  11.             polygon.addTo(map);
  12.             polygon.clickPopup(f => `<h3>值: ${f.properties.value.toFixed(2)}</h3>Color: ${f.properties.color}`, { anchor: 'bottom' });
  13.         }
  14.         const removePolygon = ()=> {
  15.             if (!polygon) return;
  16.             polygon.remove();
  17.             polygon = null;
  18.         }
复制代码
  

(4)生成等值面拉伸
  1. let fillExtrusions = null;
  2.         const addFillExtrusion = ()=> {
  3.             if (fillExtrusions) return;
  4.             fillExtrusions = new vjmap.FillExtrusion({
  5.                 data: contour,
  6.                 fillExtrusionColor: ['case', ['to-boolean', ['feature-state', 'hover']], '#00ffff', ['get', 'color']],
  7.                 fillExtrusionOpacity: 0.9,
  8.                 fillExtrusionHeight: ['get', 'height'],
  9.                 fillExtrusionBase:0,
  10.                 isHoverPointer: true,
  11.                 isHoverFeatureState: true
  12.             });
  13.             fillExtrusions.addTo(map);
  14.             fillExtrusions.clickPopup(f => `<h3>值: ${f.properties.value.toFixed(2)}</h3>Color: ${f.properties.color}`, { anchor: 'bottom' });
  15.         }
  16.         const removeFillExtrusion = ()=> {
  17.             if (!fillExtrusions) return;
  18.             fillExtrusions.remove();
  19.             fillExtrusions = null;
  20.         }
复制代码
  

 
以上的实现代码已开源至github。 地址: https://github.com/vjmap/vjmap-playground/blob/main/src/11geo_%E5%87%A0%E4%BD%95%E8%AE%A1%E7%AE%97/geoVectorContour.js
在线体验地址为:https://vjmap.com/demo/#/demo/map/geo/geoVectorContour

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

钜形不锈钢水箱

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表