点击查看代码
"header": {
"discipline": 0,
"disciplineName": "Meteorological products",
"gribEdition": 2,
"gribLength": 79831,
"center": 7,
"centerName": "US National Weather Service - NCEP(WMC)",
"subcenter": 0,
"refTime": "2023-08-10T18:00:00.000Z",
"significanceOfRT": 1,
"significanceOfRTName": "Start of forecast",
"productStatus": 0,
"productStatusName": "Operational products",
"productType": 1,
"productTypeName": "Forecast products",
"productDefinitionTemplate": 0,
"productDefinitionTemplateName": "Analysis/forecast at horizontal level/layer at a point in time",
"parameterCategory": 2,
"parameterCategoryName": "Momentum",
"parameterNumber": 2,
"parameterNumberName": "U-component_of_wind",
"parameterUnit": "m.s-1",
"genProcessType": 2,
"genProcessTypeName": "Forecast",
"forecastTime": 0,
"surface1Type": 103,
"surface1TypeName": "Specified height level above ground",
"surface1Value": 10.0,
"surface2Type": 255,
"surface2TypeName": "Missing",
"surface2Value": 0.0,
"gridDefinitionTemplate": 0,
"gridDefinitionTemplateName": "Latitude_Longitude",
"numberPoints": 65160,
"shape": 6,
"shapeName": "Earth spherical with radius of 6,371,229.0 m",
"gridUnits": "degrees",
"resolution": 48,
"winds": "true",
"scanMode": 0,
"nx": 360,
"ny": 181,
"basicAngle": 0,
"lo1": 0.0,
"la1": 90.0,
"lo2": 359.0,
"la2": -90.0,
"dx": 1.0,
"dy": 1.0
}
这段代码是一个描述风场数据的元数据(metadata)部分,它包含了各种关于数据的描述信息。这些信息有助于解释风场数据的含义、来源、分辨率、时间等属性。让我们逐个解释一下这些字段的含义:
-
discipline
、disciplineName
: 数据学科类别,这里为气象产品(Meteorological products)。 -
gribEdition
: GRIB(GRIdded Binary)编码的版本,这里是第2版。 -
gribLength
: 数据长度,以字节为单位。 -
center
、centerName
: 数据生成中心的标识和名称,这里为美国国家气象局(US National Weather Service - NCEP(WMC))。 -
subcenter
: 子中心标识,可能用于指定具体的数据生成单位。 -
refTime
: 数据的参考时间,即预报或分析的基准时间。 -
significanceOfRT
、significanceOfRTName
: 参考时间的重要性,这里表示预报开始。 -
productStatus
、productStatusName
: 产品状态,这里是运营产品(Operational products)。 -
productType
、productTypeName
: 产品类型,这里是预报产品(Forecast products)。 -
productDefinitionTemplate
、productDefinitionTemplateName
: 产品定义模板,这里是在水平层/时间点上的分析/预报。 -
parameterCategory
、parameterCategoryName
: 参数类别,这里是动量(Momentum)。 -
parameterNumber
、parameterNumberName
: 参数编号和名称,这里是U分量的风(U-component_of_wind)。 -
parameterUnit
: 参数单位,这里是米每秒(m/s)。 -
genProcessType
、genProcessTypeName
: 生成过程类型,这里是预报(Forecast)。 -
forecastTime
: 预报时间,这里是从参考时间开始的预报时间(小时)。 -
surface1Type
、surface1TypeName
: 表面1类型,这里是指定高度层以上的地面。 -
surface1Value
: 表面1值,这里是高度为10.0米。 -
surface2Type
、surface2TypeName
: 表面2类型,这里是缺失。 -
gridDefinitionTemplate
、gridDefinitionTemplateName
: 网格定义模板,这里是经纬度网格。 -
numberPoints
: 网格点数量。 -
shape
、shapeName
: 地球的形状和半径。 -
gridUnits
: 网格单位,这里是度。 -
resolution
: 网格分辨率。 -
winds
: 是否包含风速数据,这里是true。 -
scanMode
: 扫描模式,0表示正常扫描。 -
nx
、ny
: 网格点数,分别表示经度方向和纬度方向的网格点数。 -
lo1
、la1
、lo2
、la2
: 经纬度范围,分别表示西经、北纬、东经、南纬的范围。 -
dx
、dy
: 网格点之间的间隔。
这些元数据字段提供了关于风场数据的详细信息,帮助你理解数据的来源、含义以及如何解释它。通常,这些信息会在处理和可视化风场数据时起到重要的指导作用。