You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

997 lines
34 KiB

3 years ago
<template>
3 years ago
<div class="tabs">
<div :class="{'active': currentTab === 'MWR'}" class="tab-item" @click="onTabClick('MWR')">
质控对比
<img v-if="currentTab === 'MWR'" src="/images/line.png"/>
</div>
<div :class="{'active': currentTab === 'boundary-layer-height'}" class="tab-item" @click="onTabClick('boundary-layer-height')">
水汽
<img v-if="currentTab === 'boundary-layer-height'" src="/images/line.png"/>
</div>
<div :class="{'active': currentTab === 'optical-property'}" class="tab-item" @click="onTabClick('optical-property')">
光学特性
<img v-if="currentTab === 'optical-property'" src="/images/line.png"/>
</div>
<div :class="{'active': currentTab === 'aerosol-product'}" class="tab-item" @click="onTabClick('aerosol-product')">
气溶胶产品
<img v-if="currentTab === 'aerosol-product'" src="/images/line.png"/>
</div>
<div :class="{'active': currentTab === 'BingoCloud'}" class="tab-item" @click="onTabClick('BingoCloud')">
云产品
<img v-if="currentTab === 'BingoCloud'" src="/images/line.png"/>
</div>
</div>
<div class="main">
<div class="menu panel">
<div class="menu-item">
<h2 class="tip">区域选择</h2>
<el-row :gutter="12">
<el-col :span="8"><span @click="onRegionClick('jiangning')"
:class="{'active': currentRegion === 'jiangning'}">江宁</span></el-col>
<el-col :span="8"><span @click="onRegionClick('liuhe')"
:class="{'active': currentRegion === 'liuhe'}">六合</span></el-col>
<el-col :span="8"><span @click="onRegionClick('pukou')"
:class="{'active': currentRegion === 'pukou'}">浦口</span></el-col>
</el-row>
</div>
<div class="menu-item">
<h2 class="tip">要素选择</h2>
</div>
</div>
<div class="container panel">
<div class="toolbar day-toolbar">
<div class="times">
<div class="time-item" v-for="(time, index) in times" :key="index"
:class="{'active': currentTime === time.date}">
<span class="time" @click="onTimeClick(time, index)">{{ time.day }}</span>
</div>
</div>
<el-date-picker v-model="date" type="date" placeholder="请选择" :clearable="false" :editable="false"
class="date-picker" @change="onChange">
</el-date-picker>
<div class="control-btn">
<span @click="onPrevDayClick"><img src="/images/prev.png"/></span>
<span @click="onNextDayClick"><img src="/images/next.png"/></span>
3 years ago
</div>
3 years ago
</div>
<div class="picture-view">
<div class="picture-container raman-picture-container" v-show="currentTab === 'boundary-layer-height'">
<div class="picture">
<h2>水汽</h2>
<canvas id='watervapor_single_chart' style="width: 500px;"></canvas>
3 years ago
</div>
3 years ago
</div>
3 years ago
<div class="picture-container raman-picture-container" v-show="currentTab === 'optical-property'">
<div class="picture">
<h2 class="title">激光雷达比</h2>
<div id="LidarRatio" style="width: 650px;height: 450px"></div>
</div>
<div class="picture">
<h2 class="title">光学厚度</h2>
</div>
<div class="picture">
<h2 class="title">消光系数</h2>
<canvas id='extinction_optics_chart' style="width: 500px;"></canvas>
3 years ago
</div>
</div>
<div class="picture-container raman-picture-container" v-show="currentTab === 'aerosol-product'">
<div class="picture">
<h2 class="title">边界层高度</h2>
<div id="BoundaryLayerHeight" style="width: 650px;height: 450px"></div>
</div>
<div class="picture">
<h2 class="title">气溶胶PM</h2>
<canvas id='pm2_5_chart' style="width: 500px;"></canvas>
<canvas id='pm10_chart' style="width: 500px;"></canvas>
3 years ago
</div>
<div class="picture">
<h2 class="title">边界层特征值</h2>
</div>
</div>
<div class="picture-container raman-picture-container" v-show="currentTab === 'BingoCloud'">
<div class="picture">
<h2 class="title">云气溶胶分类</h2>
<canvas id='cloud_sol_chart' style="width: 500px;"></canvas>
3 years ago
</div>
<div class="picture">
<h2 class="title">云层高度</h2>
<div id="cloudsHeight" style="width: 650px;height: 450px"></div>
</div>
<div class="picture">
<h2 class="title">云顶高度</h2>
<div id="cloudTopHeight" style="width: 650px;height: 450px"></div>
</div>
</div>
<div class="picture-container raman-picture-container" v-show="currentTab === 'MWR'">
<div class="picture">
<h2 class="title">云的识别</h2>
<canvas id='cloud_recognition_chart' style="width: 500px;"></canvas>
3 years ago
</div>
<div class="picture">
<h2 class="title">消光系数</h2>
<canvas id='extinction_chart' style="width: 500px;"></canvas>
3 years ago
</div>
<div class="picture">
<h2 class="title">水汽</h2>
<canvas id='watervapor_chart' style="width: 500px;"></canvas>
3 years ago
</div>
</div>
</div>
3 years ago
</div>
3 years ago
</div>
3 years ago
</template>
<script lang="ts">
3 years ago
import {onMounted, reactive, toRefs} from 'vue';
import moment from "moment";
3 years ago
import {RamanLidarConfig} from '../uilts/Config';
import {post} from '../uilts/axios';
import {ElMessage} from "element-plus";
import {ConstantRamanLidar} from "../model/constant";
import {get} from '../uilts/axios';
import {HighChartCreate} from "../model/high-chart-create";
import {CustomeArray} from "../model/custome-array"
import {CoordinateScale, HeatMapDrawer} from "../model/heat-map-drawer";
import { Box, ColorChart } from '../uilts/box-drawer';
import axiosStore from '../uilts/AxiosStore';
3 years ago
export default {
name: 'RamanLidar',
setup() {
let timer = null;
let creates: {
boundaryLayerHeight: HighChartCreate
cloudsHeight: HighChartCreate
cloudTopHeight: HighChartCreate
LidarRatio: HighChartCreate,
cloudRecognitionDrawer: HeatMapDrawer,
extinctionDrawer: HeatMapDrawer,
watervaporDrawer: HeatMapDrawer,
opticsExtinctionDrawer: HeatMapDrawer,
singleWatervaporDrawer: HeatMapDrawer,
cloudSolDrawer: HeatMapDrawer,
pm2Point5Drawer: HeatMapDrawer,
pm10Drawer: HeatMapDrawer
3 years ago
} = {
boundaryLayerHeight: null,
cloudsHeight: null,
cloudTopHeight: null,
LidarRatio: null,
cloudRecognitionDrawer: null,
extinctionDrawer: null,
watervaporDrawer: null,
singleWatervaporDrawer: null,
opticsExtinctionDrawer: null,
cloudSolDrawer: null,
pm2Point5Drawer: null,
pm10Drawer: null
3 years ago
}
let options = reactive({
currentTab: 'MWR',
currentRegion: 'jiangning',
currentElement: 'PBLH',
currentType: '边界层高度',
date: moment('2022-01-02').format('YYYY-MM-DD'),
3 years ago
times: [],
currentTime: null,
downloadImgUrl: '/images/default-picture.png',
imgUrl: '/images/default-picture.png',
signalPBLHImgUrl: '/images/default-picture.png',
previewUrl: [],
signalPBLHPreviewUrl: [],
isPlay: false,
title: null,
index: 0,
downloadSrc: null,
urls: [],
boundaryLayerHeightList: [],
LidarRatioList: [],
cloudsHeightList: [],
cloudTopHeightList: []
})
onMounted(() => {
initTimeLine();
setTitle(moment(options.date, 'YYYY-MM-DD'));
setTimeout(() => {
reloadChangeData();
}, 50);
3 years ago
})
//边界层高度
const boundaryLayerHeightInit = () => {
creates.boundaryLayerHeight = new HighChartCreate('BoundaryLayerHeight');
creates.boundaryLayerHeight.setChart();
creates.boundaryLayerHeight.setXAxis('时间(分钟)', false);
creates.boundaryLayerHeight.setYAxis('边界层高度(米)', 3000, 0, 500, 7);
creates.boundaryLayerHeight.setLegend();
creates.boundaryLayerHeight.setTooltip('{point.category}: {point.y}(m)');
creates.boundaryLayerHeight.setSeries('边界层高度')
creates.boundaryLayerHeight.init();
}
3 years ago
3 years ago
//云层高度
const cloudsHeightInit = () => {
creates.cloudsHeight = new HighChartCreate('cloudsHeight');
creates.cloudsHeight.setChart(false,'scatter');
creates.cloudsHeight.setXAxis('时间(分钟)', false);
creates.cloudsHeight.setYAxis('高度(米)', 14000, 0, 2000, 8);
creates.cloudsHeight.setLegend();
creates.cloudsHeight.setTooltip('{point.category}: {point.y}(m)');
creates.cloudsHeight.setSeries('云层高度')
creates.cloudsHeight.init();
}
//云顶高度
const cloudTopHeightInit = () => {
creates.cloudTopHeight = new HighChartCreate('cloudTopHeight');
creates.cloudTopHeight.setChart(false,'scatter');
creates.cloudTopHeight.setXAxis('时间(分钟)', false);
creates.cloudTopHeight.setYAxis('高度(米)', 14000, 0, 2000, 8);
creates.cloudTopHeight.setLegend();
creates.cloudTopHeight.setTooltip('{point.category}: {point.y}(m)');
creates.cloudTopHeight.setSeries('云顶高度')
creates.cloudTopHeight.init();
}
3 years ago
3 years ago
//激光雷达比
const LidarRatioInit = () => {
creates.LidarRatio = new HighChartCreate('LidarRatio');
creates.LidarRatio.setChart();
creates.LidarRatio.setXAxis('时间(分钟)', false);
creates.LidarRatio.setYAxis('边界层高度(米)', 3000, 0, 500, 7);
creates.LidarRatio.setLegend();
creates.LidarRatio.setTooltip('{point.category}: {point.y}(m)');
creates.LidarRatio.setSeries('激光雷达比')
creates.LidarRatio.init();
}
3 years ago
3 years ago
const onTabClick = (name) => {
options.currentTab = name;
setTimeout(() => {
initEcharts(name)
reloadChangeData()
}, 500)
}
3 years ago
3 years ago
const reloadChangeData = () => {
cancelRequest();
3 years ago
if (options.currentTab === 'boundary-layer-height') {
reloadCloudRecognition(101, 'watervapor', drawSingleWatervapor);
3 years ago
} else if (options.currentTab === 'optical-property') {
3 years ago
extinctionApi()
3 years ago
LidarRatioApi()
reloadCloudRecognition(801, 'extinction', drawOpticsExtinction);
3 years ago
} else if (options.currentTab === 'aerosol-product') {
boundaryLayerHeightDate()
reloadCloudRecognition(201, 'pm2_5', drawPm2Point5);
reloadCloudRecognition(201, 'pm10', drawPm10);
3 years ago
// boundaryCharacteristicApi()
//aerosolApi()
} else if (options.currentTab === 'BingoCloud') {
//layerTypeApi()
cloudsHeightApi()
cloudTopHeightApi()
reloadCloudRecognition(801, 'layertype', drawCloudSol);
3 years ago
} else if (options.currentTab === 'MWR') {
3 years ago
//waterVapourApi()
reloadCloudRecognition(801, 'layertype', drawCloudRecognition);
reloadCloudRecognition(801, 'extinction', drawExtinction);
reloadCloudRecognition(101, 'watervapor', drawWatervapor);
}
}
const cancelRequest = () => {
axiosStore._axiosPromiseCancel.forEach(e=>{
e && e()
});
axiosStore._axiosPromiseCancel = [];
}
const drawPm2Point5 = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.pm2Point5Drawer != null){
creates.pm2Point5Drawer.close();
}
let matrix = converCloudRecognition(201, result);
creates.pm2Point5Drawer = new HeatMapDrawer(800, 600, matrix, "pm2_5_chart", '米');
creates.pm2Point5Drawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 1000, 2000, 3000], true, true));
creates.pm2Point5Drawer.setColorChart(preparePmColors());
creates.pm2Point5Drawer.draw();
}
const drawPm10 = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.pm10Drawer != null){
creates.pm10Drawer.close();
}
let matrix = converCloudRecognition(201, result);
creates.pm10Drawer = new HeatMapDrawer(800, 600, matrix, "pm10_chart", '米');
creates.pm10Drawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 1000, 2000, 3000], true, true));
creates.pm10Drawer.setColorChart(preparePmColors());
creates.pm10Drawer.draw();
}
const preparePmColors = () => {
return new ColorChart(['#F6EF20','#FEC338', '#C5C22A', '#72CD64', '#31C69F', '#01B8CA', '#259BE8', '#327CFC', '#4853F4', '#422EC1'],
[100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 0], true, true
);
}
const drawCloudSol = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.cloudSolDrawer != null){
creates.cloudSolDrawer.close();
}
let matrix = converCloudRecognition(801, result);
creates.cloudSolDrawer = new HeatMapDrawer(800, 600, matrix, "cloud_sol_chart", '米');
creates.cloudSolDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 2000, 4000, 6000, 8000, 10000, 12000], true, true));
creates.cloudSolDrawer.setColorChart(prepareCloudRecognitionColors());
creates.cloudSolDrawer.draw();
}
const drawOpticsExtinction = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.opticsExtinctionDrawer != null){
creates.opticsExtinctionDrawer.close();
}
let matrix = converCloudRecognition(801, result);
creates.opticsExtinctionDrawer = new HeatMapDrawer(800, 600, matrix, "extinction_optics_chart", '米');
creates.opticsExtinctionDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 2000, 4000, 6000, 8000, 10000, 12000], true, true));
creates.opticsExtinctionDrawer.setColorChart(prepareExtinctionnColors());
creates.opticsExtinctionDrawer.draw();
}
const drawSingleWatervapor = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.singleWatervaporDrawer != null){
creates.singleWatervaporDrawer.close();
}
let matrix = converCloudRecognition(101, result);
creates.singleWatervaporDrawer = new HeatMapDrawer(800, 600, matrix, "watervapor_single_chart", '米');
creates.singleWatervaporDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 500, 1000, 1500], true, true));
creates.singleWatervaporDrawer.setColorChart(prepareWatervaporColors());
creates.singleWatervaporDrawer.draw();
}
const drawWatervapor = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.watervaporDrawer != null){
creates.watervaporDrawer.close();
}
let matrix = converCloudRecognition(101, result);
creates.watervaporDrawer = new HeatMapDrawer(800, 600, matrix, "watervapor_chart", '米');
creates.watervaporDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 500, 1000, 1500], true, true));
creates.watervaporDrawer.setColorChart(prepareWatervaporColors());
creates.watervaporDrawer.draw();
}
const prepareWatervaporColors = () => {
return new ColorChart(['#990000','#CC0000', '#FF0000', '#FF3300', '#FF6600', '#FF9900', '#FFCC00', '#FFFF00', '#CCFF33', '#99FF66',
'#66FF99', '#33FFCC', '#00FFFF', '#00CCFF', '#0099FF', '#0066FF', '#0033FF', '#0000FF', '#0000CC', '#000099'],
[0.02, 0.019, 0.018, 0.017, 0.016, 0.15, 0.014, 0.013, 0.012, 0.011, 0.01, 0.009, 0.008, 0.007, 0.006, 0.005, 0.004, 0.003, 0.002, 0.001, 0], true, true
);
}
const drawExtinction = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.extinctionDrawer != null){
creates.extinctionDrawer.close();
}
let matrix = converCloudRecognition(801, result);
creates.extinctionDrawer = new HeatMapDrawer(800, 600, matrix, "extinction_chart", '米');
creates.extinctionDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 2000, 4000, 6000, 8000, 10000, 12000], true, true));
creates.extinctionDrawer.setColorChart(prepareExtinctionnColors());
creates.extinctionDrawer.draw();
}
const prepareExtinctionnColors = () => {
return new ColorChart(['#990000','#CC0000', '#FF0000', '#FF3300', '#FF6600', '#FF9900', '#FFCC00', '#FFFF00', '#CCFF33', '#99FF66',
'#66FF99', '#33FFCC', '#00FFFF', '#00CCFF', '#0099FF', '#0066FF', '#0033FF', '#0000FF', '#0000CC', '#000099'],
[10, 8, 6, 4, 2, 1, 0.8, 0.6, 0.4, 0.2, 0.1, 0.08, 0.06, 0.04, 0.02, 0.01, 0.008, 0.006, 0.004, 0.002, 0.001], true, true
);
}
const reloadCloudRecognition = (capacity: number, element: string, callback: any) => {
let result = new CustomeArray(callback);
let time = moment(options.date);
for(let index = 0; index < 24; index ++){
reloadSingleCloudRecognition(capacity, time.clone().add(-index, 'h').format('M_D_H'), element, result);
}
}
const drawCloudRecognition = (result: CustomeArray<any>) => {
if (result.length != 24) return;
if (creates.cloudRecognitionDrawer != null){
creates.cloudRecognitionDrawer.close();
3 years ago
}
let matrix = converCloudRecognition(801, result);
creates.cloudRecognitionDrawer = new HeatMapDrawer(800, 600, matrix, "cloud_recognition_chart", '米');
creates.cloudRecognitionDrawer.setAxis(new CoordinateScale([0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24]), new CoordinateScale([0, 2000, 4000, 6000, 8000, 10000, 12000], true, true));
creates.cloudRecognitionDrawer.setColorChart(prepareCloudRecognitionColors());
creates.cloudRecognitionDrawer.draw();
}
const prepareCloudRecognitionColors = () => {
return new ColorChart(['#0000FF','#00FF00', '#FF0000', '#FFFFFF'],
[3, 2, 1, 0, -99]
);
}
const converCloudRecognition = (capacity: number, result: CustomeArray<any>) => {
result.sort((x, y) => moment(x.time, 'M_D_H').isBefore(moment(y.time, 'M_D_H')) ? -1 : 1);
let matrix = new Array<Array<Box>>();
let index = -1;
result.forEach(r => {
const time = moment(r.time, 'M_D_H').format("MM月DD日HH时")
if (r.data == null){
for(let x = 0; x < 60; x++){
index ++;
if (matrix[index] == null){
matrix[index] = new Array<Box>(capacity);
}
for(let y = 0; y < capacity; y++){
matrix[index][y] = new Box(index, y, 0, 0, 0, y * 15, time, "米");
}
}
return;
}
const interval = Math.round(60 / r.data[0].length);
for(let h = 0, len = r.data.length; h < len; h++){
let tempIndex = parseInt(index + "");
for(let i = 0,len = r.data[h].length; i < len; i++){
for(let _i = 0; _i < interval; _i++){
tempIndex ++;
if (matrix[tempIndex] == null){
matrix[tempIndex] = new Array<Box>(capacity);
}
matrix[tempIndex][h] = new Box(tempIndex, h, 0, 0, r.data[h][i], i * 15, time, "米");
}
}
}
index = index + r.data[0].length * interval;
});
return matrix;
}
const reloadSingleCloudRecognition = (capacity: number, time: string, elementCode, result: CustomeArray<any>) => {
const params = prepareApiParams(time, elementCode)
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response: any) => {
if (response.state != 0) {
setCloudRecognitionResult(capacity, time, response.message, null, result);
return;
}
setCloudRecognitionResult(capacity, time, response.message, response.data, result);
})
}
const setCloudRecognitionResult = (capacity: number, time: string, message: string, data: any, result: CustomeArray<any>) =>{
result.push({
time: time,
message: message,
data: data == null ? null : JSON.parse(data).slice(0, capacity)
})
3 years ago
}
3 years ago
3 years ago
const initEcharts = (name) => {
if (name === 'boundary-layer-height') {
} else if (name === 'optical-property') {
LidarRatioInit()
} else if (name === 'aerosol-product') {
boundaryLayerHeightInit()
} else if (name === 'BingoCloud') {
cloudsHeightInit()
cloudTopHeightInit()
}
}
3 years ago
3 years ago
//区域切换
const onRegionClick = (region) => {
options.currentRegion = region;
options.date = options.currentTime;
cancelActive();
setTitle(moment(options.date));
activeImage();
setTimeout(() => {
}, 500)
}
3 years ago
3 years ago
//要素选择
// const onElementClick = (element, type) => {
// options.currentElement = element;
// options.currentType = type;
// options.date = options.currentTime;
// setTimeout(() => {
// }, 500)
// cancelActive();
// setTitle(moment(options.date));
// activeImage();
// }
const setTitle = (date) => {
options.title = date.format('YYYY.MM.DD') + ' ' + options.currentType;
}
3 years ago
3 years ago
const activeImage = () => {
options.imgUrl = RamanLidarConfig.getUrl(options.currentRegion, options.currentElement, moment(options.currentTime, 'YYYY-MM-DD'));
options.previewUrl = [options.imgUrl];
3 years ago
3 years ago
options.signalPBLHImgUrl = RamanLidarConfig.getUrl(options.currentRegion, 'signal_' + options.currentElement, moment(options.currentTime, 'YYYY-MM-DD'));
options.signalPBLHPreviewUrl = [options.signalPBLHImgUrl];
}
3 years ago
3 years ago
const onImageLoad = (event) => {
if (event.currentTarget.getAttribute('src') !== '/images/default-picture.png')
converToBase64(options.imgUrl);
else
return
}
3 years ago
3 years ago
const onDownloadClick = () => {
post("/image/createGif", prepareParams(), 'application/json').then((response: any) => {
if (response.error != 0) {
console.log(response.message);
return;
}
3 years ago
3 years ago
fetch(response.data).then(res => {
return res.blob();
}).then(blob => {
let reader = new FileReader();
reader.onloadend = function () {
options.downloadSrc = reader.result;
setTimeout(() => {
document.getElementById("radarDownload").click();
options.downloadSrc = null;
}, 500);
};
reader.readAsDataURL(blob);
}).catch(console.error);
})
}
3 years ago
3 years ago
//参数准备
const prepareParams = () => {
return {
model: 'radar',
station: options.currentRegion,
elementCode: options.currentElement,
type: null,
time: moment(options.times[0].date).format("YYYYMMDDHHmmss") + '-' + moment(options.times[options.times.length - 1].date).format("YYYYMMDDHHmmss"),
urls: prepareUrls()
}
}
3 years ago
3 years ago
const prepareUrls = () => {
let urls = [];
for (let index = 0, len = options.times.length; index < len; index++) {
let time = moment(options.times[index].date);
if (options.currentElement === 'PBLH') {
urls.push(
RamanLidarConfig.getUrl(options.currentRegion, options.currentElement, time),
RamanLidarConfig.getUrl(options.currentRegion, 'signal_' + options.currentElement, time)
);
} else
urls.push(RamanLidarConfig.getUrl(options.currentRegion, options.currentElement, time));
}
console.log(urls)
return urls;
}
3 years ago
3 years ago
const converToBase64 = (path) => {
let img = new Image();
img.src = path;
let canvas = document.createElement("canvas") as HTMLCanvasElement;
canvas.width = img.width;
canvas.height = img.height;
let ctx = canvas.getContext("2d");
let base64 = '';
img.setAttribute("crossOrigin", 'Anonymous')
img.onload = function () {
ctx.drawImage(img, 0, 0);
base64 = canvas.toDataURL("image/png");
options.downloadImgUrl = base64;
};
}
3 years ago
3 years ago
//初始化时间轴
const initTimeLine = () => {
options.times = [];
options.currentTime = moment(options.date).format('YYYY-MM-DD');
let now = moment(options.date).add(1, 'day');
for (let i = 0; i < 15; i++) {
options.times.push({
day: now.add(-1, 'day').format('DD'),
date: now.format('YYYY-MM-DD'),
})
}
options.times.reverse();
options.index = options.times.length - 1;
}
3 years ago
3 years ago
//时间选择
const onTimeClick = (time, index) => {
3 years ago
3 years ago
options.currentTime = time.date;
options.date = time.date;
reloadChangeData()
options.index = index;
cancelActive();
setTitle(moment(time.date, 'YYYY-MM-DD'));
activeImage();
}
3 years ago
3 years ago
const cancelActive = () => {
clearTimer();
options.isPlay = false;
}
3 years ago
3 years ago
//上一天
const onPrevDayClick = () => {
let element = getCurrentElement();
options.date = moment(options.date).add(-1, 'day').format('YYYY-MM-DD');
options.currentTime = options.date;
options.index--;
if (options.index < 0) {
options.index = element.childElementCount - 1;
options.date = options.times[options.times.length - 1].date
}
initTimeLine()
cancelActive();
setCurrentPlayElement(element)
reloadChangeData()
}
3 years ago
3 years ago
const onNextDayClick = () => {
options.date = moment(options.date).add(1, 'day').format('YYYY-MM-DD')
initTimeLine()
reloadChangeData()
}
3 years ago
3 years ago
//上一张图片
const onPrevImgClick = () => {
let element = getCurrentElement();
3 years ago
3 years ago
options.index--;
if (options.index < 0)
options.index = element.childElementCount - 1;
3 years ago
3 years ago
setCurrentPlayElement(element);
}
3 years ago
3 years ago
const onNextImgClick = () => {
let element = getCurrentElement();
3 years ago
3 years ago
options.index++;
if (options.index > element.childElementCount - 1)
options.index = 0;
3 years ago
3 years ago
setCurrentPlayElement(element);
}
3 years ago
3 years ago
//重置
const onRefreshClick = () => {
options.date = moment('2021-11-15').format('YYYY-MM-DD');
options.currentTime = options.times[options.times.length - 1].date;
3 years ago
3 years ago
cancelActive();
activeImage();
}
3 years ago
3 years ago
const onPlayClick = () => {
options.isPlay = !options.isPlay;
if (options.isPlay) {
timeExcute();
} else {
clearTimer();
}
}
3 years ago
3 years ago
const timeExcute = () => {
clearTimer();
3 years ago
3 years ago
let element = getCurrentElement();
3 years ago
3 years ago
timer = setInterval(() => {
options.index++;
if (options.index > element.childElementCount - 1)
options.index = 0;
setCurrentPlayElement(element);
}, 3000)
}
3 years ago
3 years ago
const clearTimer = () => {
if (timer)
clearInterval(timer);
}
const getCurrentElement = () => {
return document.querySelector('.times');
}
const setCurrentPlayElement = (element) => {
for (let i = 0; i < element.childElementCount; i++)
element.children[i].classList.remove('active');
element.children[options.index].classList.add('active');
options.currentTime = options.times[options.index].date;
setTitle(moment(options.times[options.index].date, 'YYYY-MM-DD'));
activeImage();
}
const onChange = () => {
initTimeLine();
setTitle(moment(options.date));
activeImage();
}
const onSaveClick = () => {
let pictures = document.getElementById('pictures');
options.urls = [options.imgUrl, options.signalPBLHImgUrl];
for (let i = 0; i < options.urls.length; i++) {
let img = new Image();
img.src = options.urls[i];
let canvas = document.createElement("canvas") as HTMLCanvasElement;
canvas.width = img.width;
canvas.height = img.height;
let ctx = canvas.getContext("2d");
let base64 = "";
img.setAttribute("crossOrigin", 'Anonymous');
img.onload = () => {
ctx.drawImage(img, 0, 0);
base64 = canvas.toDataURL("image/png");
pictures.children[i].setAttribute('href', base64);
setTimeout(() => {
let button: HTMLElement = pictures.children[i] as HTMLElement;
button.click();
pictures.children[i].setAttribute('href', null);
}, 500);
};
}
}
//边界层高度
const boundaryLayerHeightDate = () => {
options.boundaryLayerHeightList = []
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time, 'pblh')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response: any) => {
if (response.length <= 0) {
verify()
return;
}
for (let i in response) {
for (let val in response[i]) {
options.boundaryLayerHeightList.push(response[i][val])
}
}
creates.boundaryLayerHeight.updateSeries(0, options.boundaryLayerHeightList)
})
}
//边界层特征值
const boundaryCharacteristicApi = () => {
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time, 'pblhfeatures')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response) => {
console.log(response)
})
}
//光学特性
//激光雷达比
const LidarRatioApi = () => {
options.LidarRatioList = []
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time, 'lidarratio')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response: any) => {
if (response.length <= 0) {
verify()
return;
}
for (let i in response[18]) {
if (response[18][i] === null) {
response[18][i] = 0
}
options.LidarRatioList.push(response[18][i])
}
creates.LidarRatio.updateSeries(0, options.LidarRatioList)
})
}
//消光系数
3 years ago
const extinctionApi = () => {
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time ,'extinction')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
console.log(response)
})
}
3 years ago
//水汽
const waterVapourApi = () => {
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time,'watervapor')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
3 years ago
console.log(response,'水汽')
3 years ago
})
}
//气溶胶PM
//粗颗粒
const aerosolApi = () => {
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time,'pm10')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
3 years ago
console.log(response,'气溶胶PM')
3 years ago
})
}
//云气溶胶分类
const layerTypeApi = () => {
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time,'layertype')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
3 years ago
console.log(response,'云气溶胶分类')
3 years ago
})
}
3 years ago
3 years ago
//云层高度
const cloudsHeightApi = () => {
options.cloudsHeightList = []
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time,'cloudbaseheight')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
if (response.length <= 0) {
verify()
return;
}
for (let i in response) {
for (let val in response[i]) {
if (response[i][val] === null) {
response[i][val] = 0
3 years ago
}
3 years ago
options.cloudsHeightList.push([parseInt(i),response[i][val]])
}
}
creates.cloudsHeight.updateSeries(0, options.cloudsHeightList)
})
}
3 years ago
3 years ago
//云顶高度
const cloudTopHeightApi = () => {
options.cloudTopHeightList = []
const time = moment(options.date).format('MM_DD')
const params = prepareApiParams(time,'cloudtopheight')
get('/njqxj/lmlidar', params, ConstantRamanLidar.baseUrl).then((response :any) => {
if (response.length <= 0) {
verify()
return;
}
for (let i in response) {
for (let val in response[i]) {
if (response[i][val] === null) {
response[i][val] = 0
3 years ago
}
3 years ago
options.cloudTopHeightList.push([parseInt(i),response[i][val]])
}
3 years ago
}
3 years ago
creates.cloudTopHeight.updateSeries(0, options.cloudTopHeightList)
})
}
const prepareApiParams = (time, variableName) => {
return {
date: time,
var: variableName,
}
}
const verify = () => {
ElMessage({
showClose: true,
message: '请求接口无数据',
icon: '',
type: null,
grouping: true,
duration: 1500
})
}
return {
...toRefs(options),
onRegionClick,
// onElementClick,
onTimeClick,
onPrevDayClick,
onNextDayClick,
onPrevImgClick,
onNextImgClick,
onRefreshClick,
onPlayClick,
onChange,
onImageLoad,
onDownloadClick,
onSaveClick,
onTabClick
3 years ago
}
3 years ago
}
}
3 years ago
</script>
<style lang="less" scoped>
3 years ago
.main {
3 years ago
.container {
.toolbar {
padding: 0.15rem 0;
.times {
padding-bottom: 0;
}
}
.raman-picture-container {
width: calc(~"100% - 1rem");
margin: 0 auto;
.picture {
position: relative;
margin-top: 30px;
.title {
width: 100%;
font-size: 0.22rem;
position: absolute;
left: 3.10rem;
top: 0.30rem;
z-index: 100;
}
.pblh-image {
width: 50%;
3 years ago
}
3 years ago
}
3 years ago
}
3 years ago
}
3 years ago
}
3 years ago
</style>