-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNetCDF_Altimetry_Examples.m
119 lines (106 loc) · 4.09 KB
/
NetCDF_Altimetry_Examples.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
%% NET CDF check
clear all; close all;
addpath Americas_Data % change this to the local directory where you have the altimetry data
% % Uncomment to look at all Americas -- warning opens ~300 Matlab figure windows
% NorthAmerica={'Columbia','Mackenzie','StLawrence','Susquehanna', 'Yukon','Mississippi'};
% SouthAmerica={'Amazon','Tocantins','Orinoco','SaoFrancisco','Uruguay','Magdalena','Parana','Oiapoque','Essequibo','Courantyne'};
% Americas=[NorthAmerica SouthAmerica];
% Rivers=Americas;
Rivers={'Mackenzie'};
% Rivers={'Mississippi'};
%% map
figure; lon=[]; lat=[];
for i=1:length(Rivers),
currRiv=Rivers{i};
FNAME1=[currRiv '_NetCDF_List.txt'];
FID=fopen(FNAME1,'r');
delimiter = ',';
startRow = 5;
formatSpec = '%s%[^\n\r]';
dataArray = textscan(FID, formatSpec, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'HeaderLines' ,startRow-1, 'ReturnOnError', false);
fclose(FID);
VSLIST=dataArray{1};
for j=1:length(VSLIST),
FNAME2=[VSLIST{j} '.nc'];
lon=[lon ncread(FNAME2,'lon')];
lat=[lat ncread(FNAME2,'lat')];
end
end
hold off;
a=axis;
ax=worldmap([min(lat) max(lat)],[min(lon) max(lon)]);
land=shaperead('landareas','UseGeoCoords',true);
geoshow(ax,land,'FaceColor',[0.5 0.7 0.5]);
rivers=shaperead('worldrivers','UseGeoCoords',true);
geoshow(ax,rivers,'Color','blue');
geoshow(lat,lon,'DisplayType','point')
title('Selected virtual station locations')
%% timeseries
for i=1:length(Rivers)
currRiv=Rivers{i};
FNAME1=[currRiv '_NetCDF_List.txt'];
FID=fopen(FNAME1,'r');
delimiter = ',';
startRow = 5;
formatSpec = '%s%[^\n\r]';
dataArray = textscan(FID, formatSpec, 'Delimiter', delimiter, 'MultipleDelimsAsOne', true, 'HeaderLines' ,startRow-1, 'ReturnOnError', false);
fclose(FID);
VSLIST=dataArray{1};
for j=1:length(VSLIST),
figure;
FNAME2=[VSLIST{j} '.nc'];
t=ncread(FNAME2,'/Timeseries/time');
h=ncread(FNAME2,'/Timeseries/hwbar');
var3=ncread(FNAME2,'ID');
Flow_Dist=ncread(FNAME2,'Flow_Dist');
var4=ncread(FNAME2,'/Level3/lon');
var5=ncread(FNAME2,'/Level3/lat');
var6=ncread(FNAME2,'/Level3/h');
var3=var3';
gdat=(h>-1);
t=t(gdat); tv=datevec(t);
h=h(gdat);
x=ncread(FNAME2,'Flow_Dist');
% ncdisp(FNAME2); %uncomment to see a list of all attributes
%interpolated heights
ti=t(1):t(end);
hi=interp1(t,h,ti);
%if exists, grab ice filter info
tthaw=datevec(ncread(FNAME2,'/Filter/icethaw'));
tfreeze=datevec(ncread(FNAME2,'/Filter/icefreeze'));
if ~isempty(tthaw),
tvi=datevec(ti);
for k=1:length(tvi),
m=find(tthaw(:,1)==tvi(k,1));
n=find(tv(:,1)==tvi(k,1));
if ti(k)<datenum(tthaw(m,:)) || ti(k)>datenum(tfreeze(m,:)) ...
|| ti(k)<min(t(n)) || ti(k)>max(t(n)),
hi(k)=nan;
end
end
end
han1=plot(t,h,'ro','LineWidth',2); hold on;
han2=plot(ti,hi,'k--');
if ~isempty(tthaw),
a=axis; yplot=a(3)+.01*(a(4)-a(3));
for k=1:length(tthaw)-1,
if datenum(tfreeze(k,:)) > min(t) && datenum(tfreeze(k,:)) < max(t),
han3=plot([datenum(tfreeze(k,:)) datenum(tthaw(k+1,:))],[yplot yplot],...
'b-','LineWidth',2);
end
end
end
hold off;
set(gca,'FontSize',14)
datetick('x');
title([var3 ' elevations at ' num2str(Flow_Dist,'%.1f') ' km'],'Interpreter', 'none');
xlabel('Date');
ylabel('Height above MSL, m');
if ~isempty(tthaw),
legend([han1 han2 han3],'Altimeter data','Interpolated','Ice cover',...
'Location','Best')
else
legend([han1 han2 ],'Altimeter data','Interpolated','Location','Best')
end
end
end