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

Close-button

Plot for River Level at Earith Bridge

  • Created by: Edric Ellis
  • Latest result: Plot created
  • Created on: 26 Apr 2012
  • Liked: 4 times

The height of the river Great Ouse at Earith Bridge near Cambridge. The road is closed when the river is too high, about 2 metres or so. Also showing the river level at Alconbury Weston and Offord Cluny.

Plot Image
% time1612 and data1612 available for use
% for River Level at Offord Cluny
% 
% time1611 and data1611 available for use
% for River Level at Alconbury Weston
% 
% River Level at Earith Bridge
%   time vector is: time1610
%   data vector is: data1610
plot(time1610,data1610, 'ob-', time1611, data1611, 'og-', ...
     time1612,data1612, 'oy-');
legend( 'Earith', 'Alconbury Weston', 'Offord Cluny', ...
        'Location', 'NorthWest' );
ylabel( 'River height (m)' );
xlabel( 'Date' );
xr = get(gca, 'XLim');
set( gca, 'YLim', [0 3] );
line(xr, 2.06*ones(size(xr)), 'Color', 'r');
datetick
Tags:

    0 comments