First commit

This commit is contained in:
L_DelOff
2021-06-12 00:26:34 +03:00
parent f5a74a49e9
commit 584e81ccd7
84 changed files with 12214 additions and 0 deletions

22
test_coord.m Normal file
View File

@@ -0,0 +1,22 @@
% x=[];
% y=[];
% for i=1:(length(DATA.DATA)-84000)
% x(i)=(DATA.DATA(i).GeoLong(1));
% y(i)=(DATA.DATA(i).GeoLat(1));
% end
% plot(x,y)
% xlabel('Geographic longitude (degrees, east)')
% ylabel('Geographic latitude (degrees, north)')
x=[];
y=[];
for i=1:(length(DATA.DATA))
x(i)=(DATA.DATA(i).RPA_O2den(5));
end
figure(1)
cla
plot(x)
ylim([-1e6 1e6])
%xlabel('Geographic longitude (degrees, east)')
%ylabel('Geographic latitude (degrees, north)')