【问题标题】:Reading Grib Data in R - reading band names在 R 中读取 Grib 数据 - 读取波段名称
【发布时间】:2016-09-09 09:30:32
【问题描述】:

目前我可以使用 rgdal 读取 R 中的 grib 文件,但我真的不知道该文件包含的波段名称是什么。例如,下面是我正在使用的 grib 数据。

http://hydro1.gesdisc.eosdis.nasa.gov/data/s4pa//GLDAS_V1/GLDAS_NOAH025SUBP_3H/2016/091/GLDAS_NOAH025SUBP_3H.A2016091.2100.001.2016099220519.grb

library(rgdal)
library(sp)

fname = "GLDAS_NOAH025SUBP_3H.A2016091.2100.001.2016099220519.grb"
gribdata = readGDAL(fname) 

summary(gribdata)

band01 = gribdata@data[[1]]
band28 = gribdata@data[[28]]
dim(band01) = c(1440,600)
dim(band28) = c(1440,600)

我能读懂第 1 段和第 28 段;但我不知道这些波段是什么(哪些参数)。

“摘要”功能也无济于事。能否请您帮忙,我如何知道此文件包含的乐队的名称?

【问题讨论】:

    标签: r rgdal grib


    【解决方案1】:

    README(您指定的位置相同)指的是this page

    Parameters:
    
    Water Balance parameters
    086: Average layer soil moisture (# layers: CLM, 10; Mosaic, 3; Noah, 4; VIC, 3)
    065: Snow water equivalent
    071: Total canopy water storage
    132: Rainfall rate
    131: Snowfall rate
    099: Snowmelt
    235: Surface runoff
    234: Subsurface runoff
    057: Total evapotranspiration
    
    Energy Balance parameters
    111: Net shortwave radiation
    112: Net longwave radiation
    122: Sensible heat flux
    121: Latent heat flux
    155: Ground heat flux
    138: Average surface temperature
    085: Average layer soil temperature (# layers: CLM, 10; Noah, 4)
    
    Forcing parameters
    204: Surface incident shortwave radiation
    205: Surface incident longwave radiation
    011: Near surface air temperature
    051: Near surface specific humidity
    032: Near surface wind magnitude
    001: Surface pressure
    132: Rainfall rate (included in Water Balance)
    131: Snowfall rate (included in Water Balance)
    
    Static parameters
    Elevation
    Dominant vegetation type
    Soil sand fraction
    Soil silt fraction
    Soil clay fraction
    

    【讨论】:

      猜你喜欢
      • 2013-11-22
      • 2014-07-04
      • 2022-01-14
      • 2016-12-23
      • 1970-01-01
      • 1970-01-01
      • 2019-07-03
      • 1970-01-01
      • 2011-09-20
      相关资源
      最近更新 更多