-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathm_quiver.m
74 lines (60 loc) · 2.94 KB
/
m_quiver.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
function h=m_quiver(long,lat,u,v,varargin);
% M_QUIVER Makes a quiverplot on a map (QUIVER-style)
% M_QUIVER(LONG,LAT,U,V) plots velocity vectors as arrows with components
% (U,V) at the points (LONG,LAT) on the currently defined map. The
% matrices LONG,LAT,U,V must all be the same size. U and V contain the
% eastward and northward components of velocity (in m/s or equivalent, NOT
% degrees lat/long per sec or equivalent). Arrow scaling is automatic.
%
% M_QUIVER(X,Y,U,V,S) automatically scales the arrows to fit within the
% grid and then stretches them by S. Use S=0 to plot the arrows without
% the automatic scaling; In this case the scaling is 1 unit/degree
% latitude. Note that we do not scale arrows with respect to map
% coordinates! Instead, the arrows will correspond better to actual motions
% over some time step. The tradeoff is that a single scale arrow cannot
% be accurate for the entire map (M_VEC scales arrows according to
% map coordinates).
%
% M_QUIVER(...,LINESPEC) uses the plot linestyle specified for
% the velocity vectors. Any marker in LINESPEC is drawn at the base
% instead of an arrow on the tip. Use a marker of '.' to specify
% no marker at all. See PLOT for other possibilities. M_QUIVER is a wrapper
% for QUIVER - for fancier arrows it is possible to replace the call to
% QUIVER with one to another routine that draws fancy arrows, e.g.
% ARROW (from TMW user-contrib software archive), or to use M_VEC.
%
% M_QUIVER(...,'filled') fills any markers specified.
%
% H = M_QUIVER(...) returns a vector of line handles.
%
% See also QUIVER, M_VEC
% Rich Pawlowicz (rich@ocgy.ubc.ca) 20/Jan/97
%
% This software is provided "as is" without warranty of any kind. But
% it's mine, so you can't sell it.
%
% 6/Nov/00 - eliminate returned stuff if ';' neglected (thx to D Byrne)
% 7/jul/06 - changed angle calc to work correctly very near boundaries.
% 12/jul/06 - fixed a factor of 10 error that crept into the length of unscaled
% arrows between version 1.3f and 1.4a (pointed out D. Kaplan).
global MAP_PROJECTION MAP_VAR_LIST
% Have to have initialized a map first
if isempty(MAP_PROJECTION),
disp('No Map Projection initialized - call M_PROJ first!');
return;
end;
[X,Y]=m_ll2xy(long,lat,'clip','point');
% This is the old way, now replaced - RP 7/jun/06
%[XN,YN]=m_ll2xy(long,lat+.001,'clip','point');
%[XE,YE]=m_ll2xy(long+(.001)./cos(lat*pi/180),lat,'clip','point');
%mU=u.*(XE-X)*100 + v.*(XN-X)*100;
%mV=u.*(YE-Y)*100 + v.*(YN-Y)*100;
[XN ,YN ]=m_ll2xy([long(:) long(:)]',[lat(:) lat(:)+.001]','clip','off');
[XE ,YE ]=m_ll2xy([long(:) long(:)+(.001)./cos(lat(:)*pi/180)]',[lat(:) lat(:)]','clip','off');
mU=u.*reshape(diff(XE),size(lat))*1000 + v.*reshape(diff(XN),size(lat))*1000;
mV=u.*reshape(diff(YE),size(lat))*1000 + v.*reshape(diff(YN),size(lat))*1000;
h=quiver(X,Y,mU,mV,varargin{:});
set(h,'tag','m_quiver');
if nargout==0,,
clear h
end;