2010年2月8日月曜日

黒潮の流路変化

*
*
初ガツオ:水揚げ 勝浦漁港、活気づく /千葉
勝浦市の勝浦漁港に25日、初ガツオが水揚げされた。江戸中期の俳人・山口素堂が「目には青葉山ほととぎす初鰹」と詠む通り、黒潮に乗って日本列島に近づく初ガツオの本格シーズンは5月ごろ。冬の終わりを予感させる水揚げに、漁港は活気づいた。
毎日新聞 2010/1/25

黒潮の流れは、日本南岸を岸に近づいたり、離れたりして流れる。
参考: 黒潮の数か月から十年規模の変動(流路) 気象庁

黒潮の流軸の緯度のデータは上の気象庁のサイトから入手できる

以下はそのデータを読取りプロットするpythonプログラム。
import numpy as np
import scikits.timeseries as ts

def read_kuroshio_lat():
    ds = np.DataSource(None)
    f=ds.open('http://www.data.kishou.go.jp/kaiyou/shindan/b_2/kuroshio_stream/kuro_slat.txt')
    data=np.genfromtxt(f,dtype=[('date','S7'),('lat','f4')])
    f.close()
#    ds.__del__
    kuroshio_lat=ts.time_series(data['lat'],start_date=data['date'][0],freq='M')
    return kuroshio_lat

if __name__ == '__main__':
    import matplotlib.pyplot as plt
    import scikits.timeseries.lib.plotlib as tpl

    kuroshio_lat=read_kuroshio_lat()

    fig = tpl.tsfigure()
    fsp = fig.add_tsplot(111)
    fsp.tsplot(kuroshio_lat, '-')
    plt.xlabel("YEAR")
    plt.ylabel("Kurosho latitude")
    plt.savefig("kurosho_lat.png")
    plt.show()

0 件のコメント: