R/leafletで波浪モデルの風向風速を可視化
GEFS (Global Ensemble Forecast System)よりGEFS-waveデータをダウンロード、UGRD (Wind U component (m/s)) & VGRD (Wind V component (m/s))をwgrib2
でダンプ、jsonにgrib2json
で変換。
wget -r https://nomads.ncep.noaa.gov/pub/data/nccf/com/gens/prod/gefs.20210401/06/wave/gridded/gefs.wave.t06z.c00.global.0p25.f003.grib2
wgrib2 gefs.wave.t06z.c00.global.0p25.f003.grib2 -match "GRD:" -grib tmp.grib2
grib2json --names --data --o tmp.json tmp.grib2
leafletで可視化。
library(leaflet)
library(leaflet.extras2)
content <- "tmp.json"
leaflet() %>%
addTiles() %>%
setView(lng = 135, lat = 35, zoom = 4) %>%
addVelocity(content = content)
Author And Source
この問題について(R/leafletで波浪モデルの風向風速を可視化), 我々は、より多くの情報をここで見つけました https://qiita.com/yono2844/items/d4230403368dc6f3b487著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .