Skip to content
产品中心
Metobs.DwlStare

测风激光雷达定点扫描。固定方位和仰角盯一条视线,径向速度、信噪比、谱宽、谱强铺时间 × 斜距色斑。时间字段是 dateTime,斜距读 range。不写 source。一张图一条视线,读记录里的 azimuth + pitchdata 只认 { values: records }。DBS 反演和 LOS 是 Metobs.Dwl.Dbs,气象反演是 Metobs.Dwl.Met,不要用本类去画。

公共 option 见 基础配置标题网格图例提示框缩放工具栏


径向速度

径向速度示例

通过绘制时间 × 斜距色斑,用来看这条视线上粒子沿着激光波束方向走得有多快。民航征求意见稿把径向速度列为原始数据(附录 A .RADV)。产品 key 为 radial,单位 m/s。单波束没有水平风,不能叠羽。

数据

每条记录带 dateTimeazimuthpitchrange(斜距,米)和本产品用的 radial。都必须是 number[]999 按缺测处理。一张图取出现最多的 azimuth + pitch

js
{
    stationCode: '10K',
    stationName: '示例站',
    dateTime: '2022-03-29 10:00:00',
    azimuth: 132.4,
    pitch: 8.6,
    range: [60, 120, 180 /* … */],
    // 本产品着色读这一列(m/s)
    radial: [2.4, -0.8, 1.1 /* … */],
}

调用

ts
import { Metobs } from '@dingnl/metobs-chart'

const chart = Metobs.Dwl.Stare.init(el)
chart.setOption({
    product: 'radial',
    title: {
        show: true,
        text: '径向速度(m/s)'
    },
    xAxis: {
        show: true,
        name: '时间'
    },
    yAxis: {
        show: true,
        name: '斜距(m)'
    },
    data: {
        values: records
    }
})

色斑按像素双线性取样,缺测透明。默认打开绘图区边框。只看某一段斜距或时间,用 yAxis.min / yAxis.maxxAxis.min / xAxis.max

色标

Metobs.Dwl.Dbs LOS 同一套。

档 (m/s)−14−10−6−30361014
rgb(80,0,140)rgb(40,0,200)rgb(0,100,255)rgb(160,220,255)rgb(255,255,255)rgb(255,220,120)rgb(255,140,0)rgb(230,40,0)rgb(140,0,40)

要改色、改档去 图例


信噪比

信噪比示例

通过绘制时间 × 斜距色斑,用来看这条视线上回波信号比噪声强多少。民航征求意见稿把 SNR(亦称载噪比)列为原始数据。产品 key 为 snr,单位 dB。

数据

每条记录带 dateTimeazimuthpitchrange 和本产品用的 snr。都必须是 number[]999 按缺测处理。

js
{
    stationCode: '10K',
    stationName: '示例站',
    dateTime: '2022-03-29 10:00:00',
    azimuth: 132.4,
    pitch: 8.6,
    range: [60, 120, 180 /* … */],
    // 本产品着色读这一列(dB)
    snr: [32, 28, 24 /* … */],
}

调用

ts
import { Metobs } from '@dingnl/metobs-chart'

const chart = Metobs.Dwl.Stare.init(el)
chart.setOption({
    product: 'snr',
    title: {
        show: true,
        text: '信噪比(dB)'
    },
    xAxis: {
        show: true,
        name: '时间'
    },
    yAxis: {
        show: true,
        name: '斜距(m)'
    },
    data: {
        values: records
    }
})

色标

档 (dB)0510152025303540
rgb(0,80,0)rgb(0,160,0)rgb(80,200,0)rgb(180,220,0)rgb(255,220,0)rgb(255,140,0)rgb(255,60,0)rgb(220,0,0)rgb(160,0,40)

要改色、改档去 图例


谱宽

谱宽示例

通过绘制时间 × 斜距色斑,用来看这条视线上同一距离库内径向速度快慢差了多少。民航征求意见稿把谱宽列为原始数据。产品 key 为 width,单位 m/s。

数据

每条记录带 dateTimeazimuthpitchrange 和本产品用的 width。都必须是 number[]999 按缺测处理。

js
{
    stationCode: '10K',
    stationName: '示例站',
    dateTime: '2022-03-29 10:00:00',
    azimuth: 132.4,
    pitch: 8.6,
    range: [60, 120, 180 /* … */],
    // 本产品着色读这一列(m/s)
    width: [0.8, 1.1, 1.4 /* … */],
}

调用

ts
import { Metobs } from '@dingnl/metobs-chart'

const chart = Metobs.Dwl.Stare.init(el)
chart.setOption({
    product: 'width',
    title: {
        show: true,
        text: '谱宽(m/s)'
    },
    xAxis: {
        show: true,
        name: '时间'
    },
    yAxis: {
        show: true,
        name: '斜距(m)'
    },
    data: {
        values: records
    }
})

色标

档 (m/s)00.511.522.533.54
rgb(20,20,80)rgb(0,80,200)rgb(0,180,200)rgb(40,200,80)rgb(220,220,0)rgb(255,160,0)rgb(240,80,0)rgb(200,0,40)rgb(120,0,40)

要改色、改档去 图例


谱强

谱强示例

通过绘制时间 × 斜距色斑,用来看这条视线上各距离库回波谱的强弱。民航征求意见稿把谱强列为原始数据。产品 key 为 intensity,单位 dB。

数据

每条记录带 dateTimeazimuthpitchrange 和本产品用的 intensity。都必须是 number[]999 按缺测处理。

js
{
    stationCode: '10K',
    stationName: '示例站',
    dateTime: '2022-03-29 10:00:00',
    azimuth: 132.4,
    pitch: 8.6,
    range: [60, 120, 180 /* … */],
    // 本产品着色读这一列(dB)
    intensity: [30, 22, 16 /* … */],
}

调用

ts
import { Metobs } from '@dingnl/metobs-chart'

const chart = Metobs.Dwl.Stare.init(el)
chart.setOption({
    product: 'intensity',
    title: {
        show: true,
        text: '谱强(dB)'
    },
    xAxis: {
        show: true,
        name: '时间'
    },
    yAxis: {
        show: true,
        name: '斜距(m)'
    },
    data: {
        values: records
    }
})

色标

档 (dB)0510152025303540
rgb(20,0,60)rgb(60,0,160)rgb(0,60,200)rgb(0,160,200)rgb(40,200,80)rgb(220,220,0)rgb(255,140,0)rgb(230,40,0)rgb(140,0,40)

要改色、改档去 图例