Since it's your first time here, let us show you how Trendy works.

Close-button

Strongest magnitude recorded over the last 24 hours in Japan. (過去24時間の地震の最大のマグニチュード)

  • Created by: Teja Muppirala
  • Last ran: about 3 hours ago.
  • Auto-run in: about 22 hours.
  • Created on: 14 Feb 2012
  • Liked: 1 time

459

data points

Description:

Strongest magnitude earthquake in Japan recorded over the last 24 hours.

Recently Collected Data (last 5 of 459) Show All Data

Time Recorded (time1437) Data (data1437)
18 May 2013 07:15:22 [5.9]
17 May 2013 07:15:20 [5.1]
16 May 2013 07:15:23 [5.1]
15 May 2013 07:15:21 [3.8]
14 May 2013 07:15:20 [6.8]
data = urlread('http://typhoon.yahoo.co.jp/weather/jp/earthquake/');
startpos = regexp(data,'tr bgcolor="#ffffff" valign=middle');
%startpos = regexp(data,'tr bgcolor="#ffffff" valign')

maxval = 0;
for n = 1:numel(startpos)
    startpos2 = strfind(data(startpos(n):end) , 'td align=center' );
    newval = sscanf( data(startpos(n)+startpos2(2)+15:end) ,'%f');
    if newval > maxval
        maxval = newval;
    end
end

count = numel(startpos) + 1i*maxval;
count = imag(count);

updatetrend(count);
Tags:

    0 comments