Vue.js2+Cesium1.103.0 九、淹没分析效果

news/2024/11/8 2:59:20/

Vue.js2+Cesium1.103.0 九、淹没分析效果

Demo

<template><divid="cesium-container"style="width: 100%; height: 100%;"><spanid="button"style="position: absolute; right: 50px; top: 50px; z-index: 999; font-size: 24px; color: #fff; cursor: pointer;">淹没分析</span></div>
</template><script>
/* eslint-disable no-undef */
/* eslint-disable new-cap */
import { lineString, bbox, bboxPolygon, area, pointGrid } from '@turf/turf'
export default {data() {return {}},computed: {},watch: {},mounted() {window.$InitMap()const tileset = new Cesium.Cesium3DTileset({url: 'https://lab.earthsdk.com/model/3610c2b0d08411eab7a4adf1d6568ff7/tileset.json',debugShowMemoryUsage: false})viewer.scene.primitives.add(tileset)viewer.zoomTo(tileset)const entity = viewer.entities.add({polygon: {hierarchy: new Cesium.PolygonHierarchy(Cesium.Cartesian3.fromDegreesArrayHeights([121.4631015, 31.2671618, 0, 121.5367499, 31.2658501, 0, 121.5328263,31.2059886, 0, 121.4590159, 31.2055623, 0])),// extrudedHeight: 200,// perPositionHeight: true,// heightReference: Cesium.HeightReference.CLAMP_TO_GROUND,material: new Cesium.ColorMaterialProperty(new Cesium.Color.fromCssColorString('#17E980').withAlpha(0))}})// 淹没分析function FloodAnalysis() {const positions = entity.polygon.hierarchy.getValue(Cesium.JulianDate.now()).positionsconst tempPoints = []for (let i = 0; i < positions.length; i++) {const cartographic =viewer.scene.globe.ellipsoid.cartesianToCartographic(positions[i])const lat = Cesium.Math.toDegrees(cartographic.latitude)const lng = Cesium.Math.toDegrees(cartographic.longitude)tempPoints.push([lng, lat])}// 生成外接矩形const line = lineString(tempPoints)const _bbox = bbox(line)const _bboxPolygon = bboxPolygon(_bbox)const _area = area(_bboxPolygon)// 生成格网// 计算网格点之间的距离,尽量保证范围内有1万个左右格网点。const cellSide = Math.sqrt(_area / 1000000) / 100const options = { units: 'kilometers' }const grid = pointGrid(_bbox, cellSide, options)const gridPositions = []grid.features.forEach(f => {gridPositions.push(Cesium.Cartographic.fromDegrees(f.geometry.coordinates[0],f.geometry.coordinates[1]))})const promise = Cesium.sampleTerrainMostDetailed(viewer.terrainProvider,gridPositions)let maxHeight = 100let minHeight = 0Promise.resolve(promise).then(function (updatedPositions) {for (let i = 0; i < updatedPositions.length; i++) {const height = updatedPositions[i].height// 获取格网点处地形高度minHeight = height < minHeight ? height : minHeightmaxHeight = height > maxHeight ? height : maxHeight}const value = {minHeight,maxHeight}let waterHeight = value.minHeightconst targertWaterHeight = value.maxHeightentity.polygon.perPositionHeight = trueentity.polygon.material = new Cesium.Color.fromBytes(64, 157, 253, 150)entity.polygon.extrudedHeight = new Cesium.CallbackProperty(function () {waterHeight += 0.5if (waterHeight > targertWaterHeight) {waterHeight = targertWaterHeight}return waterHeight},false)return value})}document.getElementById('button').onclick = function () {FloodAnalysis()}},methods: {}
}
</script>

http://www.ppmy.cn/news/1027846.html

相关文章

计算机组成原理-笔记-汇总

&#x1f4da; 前言 本人在备考408&#xff0c;王道讲得的确不错&#xff0c;本人之前也看过哈工大【刘宏伟老师】的课&#xff0c;两者对比下来。 王道——更加基础&#xff0c;对小白更加友好哈工大——偏实践偏硬件&#xff08;会将更多的代码硬件设计&#xff09; PS&#…

docker配置文件

/etc/docker/daemon.json 文件作用 /etc/docker/daemon.json 文件是 Docker 配置文件&#xff0c;用于配置 Docker 守护进程的行为和参数。Docker 守护进程是负责管理和运行 Docker 容器的后台进程&#xff0c;通过修改 daemon.json 文件&#xff0c;可以对 Docker 守护进程进…

“深入探索JVM内部机制:解密Java虚拟机原理“

标题&#xff1a;深入探索JVM内部机制&#xff1a;解密Java虚拟机原理 摘要&#xff1a;本文将深入探索Java虚拟机&#xff08;JVM&#xff09;的内部机制&#xff0c;揭示其工作原理和关键组成部分&#xff0c;包括类加载、内存管理、垃圾回收、即时编译和运行时数据区域等。…

opencv,opengl,osg,vulkan,webgL,opencL,cuda

OpenCV OpenCV是一个基于BSD许可&#xff08;开源&#xff09;发行的跨平台计算机视觉和机器学习软件库&#xff0c;可以运行在Linux、Windows、Android和Mac OS操作系统上。 它轻量级而且高效——由一系列 C 函数和少量 C 类构成&#xff0c;同时提供了Python、Ruby、MATLAB等…

代码随想录第46天 | 139. 单词拆分、多重背包

139. 单词拆分 确定dp数组以及下标的含义 dp[i] : 字符串长度为i的话&#xff0c;dp[i]为true&#xff0c;表示可以拆分为一个或多个在字典中出现的单词。 确定递推公式 如果确定dp[j] 是true&#xff0c;且 [j, i] 这个区间的子串出现在字典里&#xff0c;那么dp[i]一定是tru…

掌握Python的X篇_33_MATLAB的替代组合NumPy+SciPy+Matplotlib

numPy 通常与 SciPy( Scientific Python )和 Matplotlib (绘图库)一起使用&#xff0c;这种组合广泛用于替代 MatLab&#xff0c;是一个强大的科学计算环境&#xff0c;有助于我们通过 Python 学习数据科学或者机器学习。 文章目录 1. numpy1.1 numpy简介1.2 矩阵类型的nparra…

(MySQL经验)之MySQL单表行数最好低于2000w

作为在后端开发&#xff0c;是不是经常听到过&#xff0c;mysql 单表最好不要超过 2000w,单表超过 2000w 就要考虑数据迁移了&#xff0c;表数据都要到 2000w &#xff0c;查询速度变得贼慢。 1、建表操作 建一张表 CREATE TABLE person( id int NOT NULL AUTO_INCREMENT PRI…

Ubuntu安装bfloat16==1.1出现问题 error: subprocess-exited-with-error

报错 error: subprocess-exited-with-error python setup.py bdist_wheel did not run successfully. 解决方法 确保你的系统上已经安装了 C/C 编译器&#xff08;如 gcc、g&#xff09;。 如果你使用的是 Linux 系统&#xff0c;你可以使用包管理器来安装它们。命令如下 u…