Skip to content

Instantly share code, notes, and snippets.

View JorgeGT's full-sized avatar

Jorge Garcia JorgeGT

View GitHub Profile
%% 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);
@JorgeGT
JorgeGT / plotRTL1090.matlab
Last active October 18, 2023 07:56
3D visualization of air traffic through RTL-SDR and MATLAB
%% 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
@JorgeGT
JorgeGT / ValenciaPoints.matlab
Last active August 29, 2015 14:03
Testing Valencia open data =)
%% 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
@JorgeGT
JorgeGT / IGNscraper.matlab
Last active August 29, 2015 14:02
IGNscraper
%% 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);