% Leo Baldreich 2023-02-22 % Time series of output values of gpt.m for station GRAZ % Lat: 47.0671 deg, Lon: 15.4935 deg, Ell. height: 538.30 m % % Example code for recreating this table without the header: % % % defining station coordinates and epochs for calculation % GRAZ = [47.0671*pi/180,15.4935*pi/180,538.30]; % mjds = 58849:1/4:58859; % % % allocating output array % gptout = zeros(length(mjds),3); % % % looping through epochs and filling the output array % for i = 1:length(mjds) % [gptout(i,1),gptout(i,2),gptout(i,3)] = gpt(mjds(i),GRAZ(1),GRAZ(2),GRAZ(3)); % end % % % writing output to file % file = fopen('gpt_series.txt','w'); % for i = 1:length(mjds) % fprintf(file,'%8.2f %7.2f %5.2f %5.2f \n',[mjds(i),gptout(i,:)]); % end % columns: % 1: MJD for which the values were computed % 2: pres, pressure in hPa % 3: temp, temperature in Celsius % 4: undu, Geoid undulation in m (from a 9x9 EGM based model) 58849.00 959.96 1.26 38.84 58849.25 959.96 1.24 38.84 58849.50 959.96 1.22 38.84 58849.75 959.97 1.20 38.84 58850.00 959.97 1.19 38.84 58850.25 959.97 1.17 38.84 58850.50 959.97 1.15 38.84 58850.75 959.97 1.14 38.84 58851.00 959.98 1.12 38.84 58851.25 959.98 1.10 38.84 58851.50 959.98 1.08 38.84 58851.75 959.98 1.07 38.84 58852.00 959.99 1.05 38.84 58852.25 959.99 1.04 38.84 58852.50 959.99 1.02 38.84 58852.75 959.99 1.00 38.84 58853.00 959.99 0.99 38.84 58853.25 960.00 0.97 38.84 58853.50 960.00 0.96 38.84 58853.75 960.00 0.94 38.84 58854.00 960.00 0.93 38.84 58854.25 960.00 0.91 38.84 58854.50 960.01 0.90 38.84 58854.75 960.01 0.88 38.84 58855.00 960.01 0.87 38.84 58855.25 960.01 0.86 38.84 58855.50 960.01 0.84 38.84 58855.75 960.02 0.83 38.84 58856.00 960.02 0.81 38.84 58856.25 960.02 0.80 38.84 58856.50 960.02 0.79 38.84 58856.75 960.02 0.77 38.84 58857.00 960.02 0.76 38.84 58857.25 960.03 0.75 38.84 58857.50 960.03 0.73 38.84 58857.75 960.03 0.72 38.84 58858.00 960.03 0.71 38.84 58858.25 960.03 0.70 38.84 58858.50 960.03 0.69 38.84 58858.75 960.04 0.67 38.84 58859.00 960.04 0.66 38.84