This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Init | |
clear all | |
close all | |
%!cp -v ~/place/spacescience.tech/place/img/1*.png ~/place | |
%% Import data and sum | |
files = dir('1*.png'); | |
image = imread(files(1).name); | |
chnum = zeros(1e3,1e3); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% PlotRTL1090 | |
% 3D visualization of air traffic through RTL-SDR (dump1090) and MATLAB | |
% Copyright (C) 2014 Jorge Garcia Tiscar | |
% | |
% This program is free software: you can redistribute it and/or modify | |
% it under the terms of the GNU General Public License as published by | |
% the Free Software Foundation; either version 3 of the License, or | |
% (at your option) any later version (see LICENSE). | |
%% Initialize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Valencia Point by Point | |
% Copyright (C) 2014 Jorge Garcia Tiscar | |
% | |
% This program is free software: you can redistribute it and/or modify | |
% it under the terms of the GNU General Public License as published by | |
% the Free Software Foundation; either version 3 of the License, or | |
% (at your option) any later version (see LICENSE). | |
%% Initialize | |
clear all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%% Inicializar | |
clear all | |
diaIni = '01-02-13'; | |
diaFin = '01-06-14'; | |
%% Obtener datos | |
crono = tic; | |
dias = num2str(round(today-datenum(diaIni,'dd-mm-yy'))); | |
url = ['http://signa.ign.es/ign/layoutIn/sismoListadoTerremotos.do?zona=1&cantidad_dias=' dias]; | |
tabla = getTableFromWeb_mod(url,1); |