LoginSignup
1
1

More than 3 years have passed since last update.

Windows wgrib2 メモ

Posted at

メモです

wgrib2

以下からwgrib2をダウンロード
Index of /wd51we/wgrib2/Windows_64

DLLが必要になるので合わせてダウンロード
自分の環境では以下で動作しました。

image

gdal

DownloadingGdalBinaries – GDAL

topojson

GoeJSONをTopoJSONに変換する

npm install -g topojson
var prev = ctx.globalCompositeOperation; //現在の設定を保存
ctx.globalCompositeOperation = "destination-in"; //globalCompositeOperationを destination-in に設定
ctx.fillStyle = "rgba(0, 0, 0, 0.90)"; //canvasを塗りつぶす。 0.9の値を変えると軌跡の見え方(長さ)が変わる
ctx.fillRect(0, 0, canvas.attr("width"), canvas.attr("height"));
ctx.globalCompositeOperation = prev; //globalCompositeOperationを元に戻す

globalCompositeOperationの仕様
globalCompositeOperation プロパティ - Canvasリファレンス - HTML5.JP

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1