Skip to content
Snippets Groups Projects
Commit c3307ee0 authored by giuliaghirardini's avatar giuliaghirardini Committed by Marco Luigi Gaibotti
Browse files

[weather-forecast-analysis][windyAPI] Analysis and comparison between...

[weather-forecast-analysis][windyAPI] Analysis and comparison between OpenMeteo data and Windy data. Keep them for a while to check accuracy
parent d04a0cf5
No related branches found
No related tags found
No related merge requests found
clc
clear
%% WINDY API
%% Retrieve data
gfs = readtable('weather_data2908_gfs.csv', ...
'VariableNamingRule', 'preserve');
iconEu = readtable('weather_data2908_iconEu.csv', ...
'VariableNamingRule', 'preserve');
%% Conversion
time1 = convertTo(gfs.Timestamp,'epochtime');
windSpeed1 = sqrt(gfs.("wind_u-surface").^2 + gfs.("wind_v-surface").^2);
windDirection1 = atan(gfs.("wind_v-surface")./gfs.("wind_u-surface"));
windDirection1 = rad2deg(windDirection1);
time2 = convertTo(iconEu.Timestamp,'epochtime');
windSpeed2 = sqrt(iconEu.("wind_u-surface").^2 + iconEu.("wind_v-surface").^2);
windDirection2 = atan(iconEu.("wind_v-surface")./iconEu.("wind_u-surface"));
windDirection2 = rad2deg(windDirection2);
%% Plots
close all
figure();
plot(gfs.Timestamp, gfs.("temp-surface")-273, '-x', 'LineWidth', 1.2); hold on
plot(iconEu.Timestamp, iconEu.("temp-surface")-273, '-x', 'LineWidth', 1.2); hold off;
p = legend('GSF','iconEu', 'Location', 'southeast');
flightWindow(gfs.Timestamp);
p.String = {'GSF','iconEu'};
xlabel('days')
ylabel('° C')
grid('minor')
title('Temperature forecast')
figure();
plot(gfs.Timestamp, windSpeed1, '-o', 'LineWidth', 1.2); hold on;
plot(gfs.Timestamp, gfs.("gust-surface"), 'x', 'LineWidth', 1.2); hold on;
plot(iconEu.Timestamp, windSpeed2, '-o', 'LineWidth', 1.2); hold on;
plot(iconEu.Timestamp, iconEu.("gust-surface"), 'x', 'LineWidth', 1.2); hold off;
p = legend('gust GSF','wind GSF','gust iconEu','wind iconEu', 'Location', 'northeast');
flightWindow(gfs.Timestamp);
p.String = {'gust GSF','wind GSF','gust iconEu','wind iconEu'};
xlabel('days')
ylabel('m/s')
grid('minor')
title('Wind speed and gust forecast')
figure();
plot(gfs.Timestamp, windDirection1, '-x', 'LineWidth', 1.2); hold on
plot(iconEu.Timestamp, windDirection2, '-x', 'LineWidth', 1.2); hold on
p = legend('GSF','iconEu', 'Location', 'southeast');
flightWindow(gfs.Timestamp);
p.String = {'GSF','iconEu'};
xlabel('days')
ylabel('deg')
grid('minor')
title('Wind direction forecast')
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-26 09:00:00,1.2532124297532274,0.34188123510426993,298.0838609247861,2.015291245484756
2024-08-26 12:00:00,1.4409908582478606,-1.7778570881443199,300.1127713931296,1.7554553392710779
2024-08-26 15:00:00,-0.4191712791339695,-1.4244523796451714,291.6200649894762,0.9402960239553672
2024-08-26 18:00:00,0.831008711562768,0.6788462589969941,299.3618547174703,2.6932585212836164
2024-08-26 21:00:00,-1.6783057027608166,0.03159701081926492,300.3978777880985,2.495981077159847
2024-08-27 00:00:00,0.764953227261421,-2.671863307238593,289.94006003782994,1.4794225552488223
2024-08-27 03:00:00,1.1132608185231423,-0.08572304660678746,298.4207127630077,2.5080430028569083
2024-08-27 06:00:00,-2.2405602808220983,-1.32390619057831,299.3650092215612,2.1060161836008717
2024-08-27 09:00:00,-1.787446124819366,-2.7363823317442124,291.3811330098929,2.439232651449996
2024-08-27 12:00:00,0.9597672816300026,-1.7434685019834373,290.4330308881472,3.1616028500037667
2024-08-27 15:00:00,-1.635915505489792,-1.8780367530952093,293.98356994448983,1.6730926328573124
2024-08-27 18:00:00,1.1790295845286458,-2.400452199472704,292.36211143115486,1.7679920920048224
2024-08-27 21:00:00,0.6294347219895434,-0.5095111654648816,288.2424303798411,1.5871489392081688
2024-08-28 00:00:00,-0.27980413212214844,-1.9646442456396167,300.2844169322414,2.34614676778996
2024-08-28 03:00:00,1.047481024890867,-1.2091949224471594,293.1707642137992,2.312948444138195
2024-08-28 06:00:00,-0.5077892877892076,0.3886022797504281,290.9025889512208,2.0560670172642985
2024-08-28 09:00:00,0.361077424748669,-1.8913178622332267,291.53752695583125,2.212252138250569
2024-08-28 12:00:00,0.9355836961418709,-0.2053823903013813,293.1442548032737,2.1326526613977643
2024-08-28 15:00:00,0.22446718442724495,-2.131887043664917,292.99927784691215,3.4226456082690433
2024-08-28 18:00:00,-1.085460488063118,-1.9126193814350678,290.1617869469356,2.238156591032448
2024-08-28 21:00:00,-0.1421462672584237,0.8544005303544389,290.0300212852299,1.8274641783559706
2024-08-29 00:00:00,0.9409100398677989,-1.7410860952305767,290.94563780292015,4.08719902028
2024-08-29 03:00:00,-0.2338520114069617,-1.9283044575680426,290.6628321701093,2.1917950067511587
2024-08-29 06:00:00,-0.16384863672504835,1.2577926601792355,298.21953354109974,1.8123290665600271
2024-08-29 09:00:00,0.9901042828508366,-2.3337124700299388,290.13995141173746,3.634695449091117
2024-08-29 12:00:00,-1.4026701718574413,0.7424381930920332,289.1324925203545,2.4622419782719147
2024-08-29 15:00:00,-0.29743730731371065,-0.7672854200981094,299.1342818466549,2.8320135331295972
2024-08-29 18:00:00,-1.2839908526503003,-1.022644927615243,288.99744212273765,2.567844830205776
2024-08-29 21:00:00,0.986310779244874,-1.206090247583714,292.31677628749975,2.2476135628474285
2024-08-30 00:00:00,0.5355675629957147,-2.1553661473194903,295.2914157644197,2.681513146944335
2024-08-30 03:00:00,0.6478839415614892,-2.13055030865429,292.22133083344625,1.8864020842907643
2024-08-30 06:00:00,-1.911848782315724,0.2166916893091813,290.3498272251988,2.485745916590208
2024-08-30 09:00:00,0.9582564967636281,-1.6198851942252377,292.1990322517762,2.5558620423481972
2024-08-30 12:00:00,0.3405991218525683,-1.0799951716201115,290.25333991658323,2.212621448167975
2024-08-30 15:00:00,-1.1754018119298728,-1.5468390939662136,288.46298520256437,1.8654833153946178
2024-08-30 18:00:00,-0.9023357180619236,-0.8209273024605921,289.62695380150365,2.169636411703494
2024-08-30 21:00:00,1.1142091944246495,-1.852983751766757,297.74962819317204,2.1523316041424594
2024-08-31 00:00:00,0.2567340203314775,-2.044309340225676,290.6772010809455,3.693864173724372
2024-08-31 03:00:00,1.2619463101483281,-3.10486842959751,292.76187970876765,2.344392545682027
2024-08-31 06:00:00,0.6933067361920529,0.23113705152083,297.04617378089904,4.125343458897926
2024-08-31 09:00:00,0.6467260407515448,-2.349731729915607,291.4658560440777,2.777190794846487
2024-08-31 12:00:00,0.17120374716932352,-0.8444495265994478,291.33290382578735,2.454367763246045
2024-08-31 15:00:00,0.705426098002961,-1.7016416322954888,290.38520686970463,2.2155495482278393
2024-08-31 18:00:00,-1.1251709720313023,-1.8488334051610813,298.93439047274734,3.285288698253276
2024-08-31 21:00:00,-0.36111082423443464,-1.2381826679602295,290.2459890538393,3.6047219923973017
2024-09-01 00:00:00,-0.21991309118051938,-1.654176759296625,297.73793626975254,2.0100417688006926
2024-09-01 03:00:00,1.2484815778725313,-1.9946992231369838,290.71382516284496,2.008887675308737
2024-09-01 06:00:00,1.0215330191210723,-2.827086270288914,299.00936059061434,2.3744847091351335
2024-09-01 09:00:00,0.8994571908714044,-1.27461947712132,290.9089413700094,1.2516374740148526
2024-09-01 12:00:00,0.7293009099415908,-1.8043546256940155,290.10439812480456,2.151672122146997
2024-09-01 15:00:00,0.9569442091790354,-1.6373705505741218,299.4338005630666,2.265894403761867
2024-09-01 18:00:00,0.7962827148908822,-1.2937973124757174,289.8232855056572,2.163338358646786
2024-09-01 21:00:00,1.0629086747300767,-1.6350204841844647,293.2585838712659,2.355313567526946
2024-09-02 00:00:00,0.5755316823793613,-1.8747380360528008,289.1307850364888,3.30335191010922
2024-09-02 03:00:00,-0.08086574534484911,-0.7277331559523867,298.8604043286334,1.3695990185438909
2024-09-02 06:00:00,-1.9225786631546435,-0.9781769282690297,298.5605962081768,1.3437341346817047
2024-09-02 09:00:00,0.3167132822871678,-1.6904518666419346,291.9596516959232,1.390906881817324
2024-09-02 12:00:00,0.0654488065266169,-0.4593836025657729,289.6733886805301,2.3590264511614145
2024-09-02 15:00:00,-2.0378945561993844,-1.351751243259725,298.38973205998644,1.924117859611452
2024-09-02 18:00:00,1.320139096568707,0.47519899217390615,288.45700900903427,3.3648683906462473
2024-09-02 21:00:00,1.4352013541981354,-2.214570572145726,298.1088943746819,1.7139013787367343
2024-09-03 00:00:00,0.2169132600957146,0.204402351308084,289.82748186431024,1.360926830303471
2024-09-03 03:00:00,0.9869724368505713,-1.8165469426056298,298.19583134981116,2.885260109443594
2024-09-03 06:00:00,0.7093078226229512,-1.6051379886240145,293.3107634205862,2.3428163837128566
2024-09-03 09:00:00,-1.3719802865802022,0.7762446527161091,297.0772847157405,2.045581253536378
2024-09-03 12:00:00,-1.5278778461073064,-1.7721544041069968,293.03444043838425,1.2460846356130357
2024-09-03 15:00:00,0.8227269638649175,-1.1391241355989163,293.7269119671481,2.1534922924544952
2024-09-03 18:00:00,-0.22228403093421656,0.5432323361428764,292.0666877819805,2.3460676299505443
2024-09-03 21:00:00,-1.1352722781447722,0.038420827446126314,289.93799079890795,4.893903776413793
2024-09-04 00:00:00,0.19819937748143868,-1.004890068239803,291.9952483934629,1.6753546561017805
2024-09-04 03:00:00,-0.36946976531981557,-0.6448016846872382,299.76333047894883,0.8231522371007433
2024-09-04 06:00:00,-1.8367175611896638,-1.9822481833201127,291.16949183175683,1.375897071600535
2024-09-04 09:00:00,0.7817593304459922,-1.6097195400717421,289.077534692202,2.2222301008418923
2024-09-04 12:00:00,-1.109743322191949,-1.5944872290229886,290.25047481653735,1.6436731410395806
2024-09-04 15:00:00,-0.9914499699214476,-0.9421174233448995,290.0486154951235,3.2253285952254838
2024-09-04 18:00:00,0.7679086312335583,-1.2403386921709514,297.21408600782985,1.9185452367497813
2024-09-04 21:00:00,-0.8748548721721663,-0.07895313058508019,299.7434773614593,1.8828408815152624
2024-09-05 00:00:00,0.7541682082887506,-1.328153558273468,295.40117224849996,2.118236384976875
2024-09-05 03:00:00,0.31918347068175756,1.7296924592994873,300.3459442322165,2.400422136016816
2024-09-05 06:00:00,1.3434184166622276,1.0119304393103075,291.97034517538737,1.9557466161140116
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-26 12:00:00,2.27771341287914,-2.094939557966509,290.0740952676474,5.142701702759748
2024-08-26 15:00:00,0.9836046593794829,-1.3224907129485204,287.85999196046635,6.155316262453748
2024-08-26 18:00:00,-2.5658847785659167,-0.43964576544463974,292.37186880142673,5.665529095879254
2024-08-26 21:00:00,1.5037569391717094,-1.6879846562561065,290.3474726805469,6.35898514477729
2024-08-27 00:00:00,-2.1097302853046283,-1.876912498258781,291.24195275316725,6.577695670833223
2024-08-27 03:00:00,2.1982950525523886,-1.6907931280785418,295.254065234871,4.951803490169768
2024-08-27 06:00:00,-1.2430502902319698,-1.4713857089210403,288.873329035049,5.592437492319709
2024-08-27 09:00:00,-4.2512737864290076,0.21293002338238579,296.06488909952884,3.6276597503884513
2024-08-27 12:00:00,1.915505419335407,-1.6032747427600442,288.28228933937936,5.140954805283142
2024-08-27 15:00:00,0.4351601335208022,-1.4986610835482186,295.38755067652124,5.385318221777451
2024-08-27 18:00:00,-0.9256612048934952,0.474394549016688,288.3822982857731,5.736154079766543
2024-08-27 21:00:00,1.6942896092034978,-1.1684841663983359,294.57632728731284,4.002075245580994
2024-08-28 00:00:00,1.9912419688844447,0.3488806088092571,288.05282530250713,5.258116729628608
2024-08-28 03:00:00,-2.615915364471911,-1.675942812729933,289.41183389379535,5.117382859586116
2024-08-28 06:00:00,0.016475570144535788,-1.6298376328913258,294.3131604250153,8.18927452811394
2024-08-28 09:00:00,0.9204825663731117,-1.7319755977796247,297.06973088093594,5.346908268505081
2024-08-28 12:00:00,2.167802851906353,-0.8055540211956912,286.6224408280448,4.729355751673436
2024-08-28 15:00:00,-2.1205603085645297,-0.6805488283098327,291.6709448426183,7.21871247462392
2024-08-28 18:00:00,-1.9490427176451806,-2.038957552958636,287.6104672560458,7.259718826959198
2024-08-28 21:00:00,-1.834371122893334,-0.6705574148338012,287.189929215901,5.28218088715065
2024-08-29 00:00:00,-1.733264531097014,-1.2237224612560806,295.1373593023954,4.643926250881357
2024-08-29 03:00:00,0.9529381227101484,-0.3877111907562565,288.7273670011476,5.2513577389882045
2024-08-29 06:00:00,-2.7315790142134335,-1.7985891032931502,295.65114308833375,7.5675184101978745
2024-08-29 09:00:00,1.2678705710600706,-1.5106587991689624,289.40944097912114,5.414663317684963
2024-08-29 12:00:00,0.14340049681953734,0.7357848128075518,288.18510514805956,6.600641889603442
2024-08-29 15:00:00,1.1716219172202635,0.09316280736251935,289.34066829015535,8.469157962410533
2024-08-29 18:00:00,1.6879346460685645,-1.678090693738375,296.09208536954327,11.489771767564168
2024-08-29 21:00:00,1.6521601993831536,-2.1283116878905974,290.5818712771515,6.613728410705555
2024-08-30 00:00:00,1.2833214902869208,-1.5797623006566854,289.61668120654826,5.8550796998445565
2024-08-30 03:00:00,2.22558694191361,-1.3588561664056968,289.52291756231574,6.943986710026921
2024-08-30 06:00:00,-1.5719954078326752,-1.6091411786853589,290.52901503573776,5.073540374514793
2024-08-30 09:00:00,0.9333543760931482,-1.6667057819036217,289.278797424456,7.544766962986473
2024-08-30 12:00:00,-0.06577782598956282,-1.9574294738287832,294.8649920223378,7.196455311121356
2024-08-30 15:00:00,0.7296030114812788,0.8765421302324032,296.60124910702797,6.83434210638151
2024-08-30 18:00:00,2.1075656049998686,0.470201611090535,290.13435321915347,4.257142050546764
2024-08-30 21:00:00,1.267348800993716,0.773475463375887,292.5510690203434,6.760856995403131
2024-08-31 00:00:00,2.202113841634107,-2.0055854230345638,294.79827032618397,6.729247902727297
2024-08-31 03:00:00,-2.1778712007943177,-1.4835532263360307,287.1903778122403,7.08478558393139
2024-08-31 06:00:00,0.3075254101795711,-1.7783156200509869,287.8264173281965,5.73117285171213
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-27 09:00:00,1.2723813097697945,-1.5443743875256517,300.2635839878682,1.4312212163321811
2024-08-27 12:00:00,-0.750985041997656,0.2531633843632812,288.22368574933444,1.2620573066285132
2024-08-27 15:00:00,-1.1938085252479096,0.4768895858982965,297.12966377330747,2.029479807810067
2024-08-27 18:00:00,0.48979916248629535,-0.9036490953705582,291.227720282828,1.7199462832896373
2024-08-27 21:00:00,1.1864315381662291,0.6852398502650123,293.2716962848961,2.1264075652944676
2024-08-28 00:00:00,0.5878815507337306,-1.5038273866725795,291.46094218506227,1.4011165306129243
2024-08-28 03:00:00,1.2448701191760105,2.1132498715301447,291.44143115029635,2.230641952289239
2024-08-28 06:00:00,0.9320211221799475,-1.6759138649462422,297.10558571114467,2.0774840206581944
2024-08-28 09:00:00,2.245544279021564,-1.1090711566168592,297.9474651823626,3.320393155490504
2024-08-28 12:00:00,2.078275332251205,-1.7869329542262449,292.24230854326936,1.303145949010638
2024-08-28 15:00:00,0.3118957332131794,-0.16259552611176264,288.9131190022487,1.9891801442013877
2024-08-28 18:00:00,1.5073840789263566,-0.4324265728535952,297.8567460970106,2.2241243015523247
2024-08-28 21:00:00,-1.6360191354404374,-0.36121956285932777,288.3064558945966,2.7624891131011466
2024-08-29 00:00:00,0.9934219229689333,-1.6162933527885524,299.31802143264275,3.7496319116492804
2024-08-29 03:00:00,0.6555586256144535,2.686718357115857,297.50502717696537,2.199302343272398
2024-08-29 06:00:00,-0.15179948250496864,0.3148278971304827,297.16550626680316,1.8918956310976676
2024-08-29 09:00:00,-0.5523914722736581,-1.1482861121290235,289.50707825837554,2.283187938598137
2024-08-29 12:00:00,1.1698726161050281,-1.1276049598955535,291.2689680555848,5.25581297214021
2024-08-29 15:00:00,1.143201288590435,-1.0461664637047086,298.9928808777339,4.7364659793731025
2024-08-29 18:00:00,1.697976250395831,-0.9682073618095302,291.13101781348126,2.3989414156846918
2024-08-29 21:00:00,0.33601342298707115,0.4824818797006495,292.05503151475415,2.0097073136799555
2024-08-30 00:00:00,2.762060072719842,-0.6657067547653817,290.8069178470933,1.9006224224000579
2024-08-30 03:00:00,-1.8565512907326647,-1.0436861034146623,293.84837020948225,1.7655835598175407
2024-08-30 06:00:00,-0.22114493404303392,-2.6898759650108404,291.72071354719634,2.4089991798743466
2024-08-30 09:00:00,1.1054187995282292,-1.7023251087759603,293.15538161245513,1.7444732321151464
2024-08-30 12:00:00,0.7216581198464775,-0.1934277824954832,299.27892710001936,2.481756744152463
2024-08-30 15:00:00,1.9714992261841693,-1.5336720921999465,299.44151905640126,2.8246537797607125
2024-08-30 18:00:00,0.7984828925896617,-1.66097428745835,297.7833846062912,2.2203097606999975
2024-08-30 21:00:00,-0.510341570809134,0.4295675268455735,299.3457704598652,2.6799687940875625
2024-08-31 00:00:00,0.7218510613646149,-2.1819762630193136,289.19748872080606,2.1949046441962636
2024-08-31 03:00:00,2.0548045640383097,-1.726003363026443,298.453407992768,2.4455323274255996
2024-08-31 06:00:00,0.11694535333274474,-0.35334212230844275,290.06107602477823,2.0814563572652016
2024-08-31 09:00:00,0.164091180777724,1.5333508222294507,293.2852817461405,1.7530216456078438
2024-08-31 12:00:00,0.2023843973882025,-1.7200550915900668,289.9615408422359,2.0424808058587556
2024-08-31 15:00:00,1.2833903258076804,-2.189084332554401,290.62887604170055,2.0685857122311746
2024-08-31 18:00:00,0.9751151777429482,-0.47709602437408694,300.39890385343284,0.8957927779575445
2024-08-31 21:00:00,-0.8494192647782248,-1.6951366571943827,296.7380989844848,1.263498050475644
2024-09-01 00:00:00,0.41223667217355875,-2.6984653608302454,298.1654684774794,2.41599707856016
2024-09-01 03:00:00,-0.9606216762625538,-0.7992098507489397,288.8890987505594,0.93959825159418
2024-09-01 06:00:00,-0.6543440403861489,1.2438606235586833,290.6210860804126,1.9208408610543268
2024-09-01 09:00:00,1.2484565615141292,0.2838348766540244,293.0916166603166,1.620582982635116
2024-09-01 12:00:00,0.4534353610578313,-1.221135212500529,291.8564380860747,1.8968010208627792
2024-09-01 15:00:00,-0.45580721816767644,-0.3490818738473424,288.8219952435831,2.224460475116638
2024-09-01 18:00:00,1.2590115975092904,0.2177723176315324,288.48260440698607,2.35812720070209
2024-09-01 21:00:00,0.8189800915221825,-1.5938552786829707,289.3377369292265,1.8365024605194313
2024-09-02 00:00:00,1.0960327621433006,-1.0698447179553017,290.2715206005007,2.0287525752015028
2024-09-02 03:00:00,-0.5039631512078013,0.7463416887071959,290.08473496100913,1.7641771193953368
2024-09-02 06:00:00,0.42041966244505324,-0.8586581156643953,290.9115403512932,1.9540877404971817
2024-09-02 09:00:00,-1.1125914955906429,-1.497419789256765,291.18274373453824,4.095712305091066
2024-09-02 12:00:00,0.28842496500038506,-0.15486736650411187,293.7616544994119,1.3794436267416603
2024-09-02 15:00:00,0.22029391007663446,0.9362040823929603,290.08372327772497,2.531297750437504
2024-09-02 18:00:00,-0.9803471091222924,-1.4336883095809076,289.0561421133914,3.5698888256970656
2024-09-02 21:00:00,-0.9791667610110608,-1.931735469309049,290.74420793609414,2.0122389064398525
2024-09-03 00:00:00,-1.5397980653685661,-1.6700344924068007,292.35337691525126,1.778907010060655
2024-09-03 03:00:00,0.6017165925380918,0.3219933824129436,289.42621585873496,1.704900801114978
2024-09-03 06:00:00,0.8031588870305264,-1.1886723488892394,297.49019879054333,3.7279247043530503
2024-09-03 09:00:00,0.3016584832478386,-1.8367353735691554,300.66224501229823,1.8647341792375034
2024-09-03 12:00:00,-0.6130205069900194,0.9487896142352447,297.8224066758228,1.9729134600991831
2024-09-03 15:00:00,2.0097243457880767,-1.941610977871579,290.4386217738062,3.618640853208564
2024-09-03 18:00:00,1.525282242113837,-1.456516810769235,291.9071523238475,1.7036590171324733
2024-09-03 21:00:00,0.7516548511746088,-0.7858090152928345,297.76391692938046,2.1785076070793545
2024-09-04 00:00:00,-1.3813022829252204,-1.3535703755814934,289.06881705968,2.159976896931852
2024-09-04 03:00:00,-1.0348928112649038,2.3830120193752347,292.7562002937646,4.45648828577302
2024-09-04 06:00:00,0.7873376825388669,-1.316169757688959,287.7895724521039,1.7165502442214835
2024-09-04 09:00:00,0.7923087640075458,2.296968780238398,297.52263046610955,2.22380184935796
2024-09-04 12:00:00,-0.7694052822343076,-0.011638042901692916,298.5169127977762,2.7299900483216177
2024-09-04 15:00:00,-0.541745640269933,-0.640593106828367,289.8958103340026,2.4614834200184763
2024-09-04 18:00:00,0.5797780069697035,-1.846943893466738,290.22118213080483,1.4844807138797211
2024-09-04 21:00:00,0.8575116476550348,-1.2996914381692166,290.6951268441943,2.5485592338627105
2024-09-05 00:00:00,-1.2488649549387785,-1.3050540689816073,289.50544511250257,2.4146729663578244
2024-09-05 03:00:00,-0.5898107773015965,-1.3333600324772452,291.6945687606101,2.029431783015165
2024-09-05 06:00:00,-0.4623331812828393,-0.3154132795392874,301.1163462806999,1.5579517893964836
2024-09-05 09:00:00,-3.8295939547554676,-0.05095634675915588,300.0810185129333,1.8727131558763674
2024-09-05 12:00:00,-0.9842513374903863,1.6099204630360326,298.6712378564646,2.059845199558788
2024-09-05 15:00:00,-1.0295585457620522,-0.6564168868270677,298.83465361209227,2.590608372142917
2024-09-05 18:00:00,0.4952923210042117,1.1726536135643693,287.39633115955326,1.0996717536911642
2024-09-05 21:00:00,1.9640199049789557,0.3165963021521132,296.188870582136,1.7141695865312774
2024-09-06 00:00:00,1.7715550658329502,-1.572278440789157,297.5434711417632,2.829730686650436
2024-09-06 03:00:00,0.783490201676116,-1.9102160471628862,289.78203932239023,2.3973154333428432
2024-09-06 06:00:00,-1.6836529914315301,0.11258666829308929,290.16549619232137,1.8406943390460235
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-27 15:00:00,-1.1908622897681285,-0.6777225677104796,296.096865563097,5.952536160253995
2024-08-27 18:00:00,2.020107288364884,-1.2944601355362226,289.4909651682251,6.516976867219251
2024-08-27 21:00:00,-1.8200157884511072,-1.587420232586961,287.5028007093794,9.14112734219388
2024-08-28 00:00:00,1.5495623618890237,0.7341854404434996,289.2310301139826,7.992059795939569
2024-08-28 03:00:00,1.7505699721741028,-1.3585260003967863,289.83505825334476,4.584540196241569
2024-08-28 06:00:00,0.8041591404151655,-1.7216053750039162,287.5998336126392,6.2100904151241725
2024-08-28 09:00:00,-2.4890886847861675,-3.379258254371344,288.489943840481,5.234398148318731
2024-08-28 12:00:00,0.8975214203762449,1.5272034014584837,290.815373392503,7.488341031000249
2024-08-28 15:00:00,-2.0675457935030024,-1.4974270926355053,287.2089613756148,6.410275401566195
2024-08-28 18:00:00,-1.3802071504321387,-2.131077993056928,294.71025796842287,6.807450405011308
2024-08-28 21:00:00,1.4069328015679863,-2.204150834460353,296.08386948375687,5.005534368557443
2024-08-29 00:00:00,1.8763765587136534,-1.3927288270212719,297.66811175647916,5.123771601380607
2024-08-29 03:00:00,1.9923288854080274,0.5036054477557405,288.90862634054923,4.799701236873284
2024-08-29 06:00:00,-1.7051003292282734,-1.978983386841284,288.614275244075,7.104232109154868
2024-08-29 09:00:00,1.9708922532650872,-0.3534644462149382,289.6736307870126,9.649880958424685
2024-08-29 12:00:00,2.1673505070474,-2.2409798251657587,296.3585581182243,6.283627280274785
2024-08-29 15:00:00,0.7916323345679331,-1.609488370009844,288.6117837677247,8.272323449674172
2024-08-29 18:00:00,1.7135642524942574,-2.6503827836940133,288.01760706052556,7.781986174652405
2024-08-29 21:00:00,0.6310143292765518,-0.793482765846012,295.5911834023683,6.445425906290164
2024-08-30 00:00:00,0.891770422889144,-1.9930685427342798,288.2158949094007,5.48267122139983
2024-08-30 03:00:00,-1.5193121651232944,-2.13937444244791,295.96270292849965,8.238720782064238
2024-08-30 06:00:00,1.5601400176445563,-3.8864422877117883,296.4585201896255,4.441981477597317
2024-08-30 09:00:00,0.6061737174887973,-1.7936611873468447,287.5632897149298,10.066815708875925
2024-08-30 12:00:00,-1.7142070799660654,-1.4667908336752997,294.44673384149223,8.613677021805435
2024-08-30 15:00:00,-1.7006675198443435,-0.1585779939800936,290.5143828482414,7.421661376309301
2024-08-30 18:00:00,0.7803513772327983,0.8658280102091055,295.1477814166743,4.728418957103499
2024-08-30 21:00:00,-2.0924145373538536,-0.9947778943526491,287.9901132823153,4.848052163776587
2024-08-31 00:00:00,0.18056775250945384,-1.814412759753005,294.2234167558774,5.564654020387427
2024-08-31 03:00:00,-1.576496611835333,-1.926174501171169,294.99621884994485,7.147653320872864
2024-08-31 06:00:00,-1.6487879764748448,-1.9328548495892637,288.15657083738694,7.95367343551287
2024-08-31 09:00:00,1.7924465576501034,-1.6198537072841983,290.81853824083964,9.265789559263759
2024-08-31 12:00:00,1.889992477292609,-3.2340111794330593,292.96559155362826,7.709465625191697
2024-08-31 15:00:00,-3.967091020120841,-1.5647112275369233,289.2816946222495,4.702210862271805
2024-08-31 18:00:00,-0.6526718079436956,-1.7781828409599334,297.1489621560198,5.723888493599122
2024-08-31 21:00:00,0.9804989501578988,-2.3421742166879227,296.2352098377307,4.795548360691871
2024-09-01 00:00:00,-1.7958905348414227,-1.969244985289127,287.80633659974995,8.523277493454628
2024-09-01 03:00:00,2.3162494985913424,-0.38437237732147367,290.4532474055838,10.757904537132458
2024-09-01 06:00:00,2.118645867951008,-1.996753531590572,289.8922140675619,6.288913290041367
2024-09-01 09:00:00,1.4366241848210506,-1.9998115847246107,288.50963323736727,5.541851167206487
2024-09-01 12:00:00,1.905336508324062,-1.5748536543322367,290.33577092881274,7.764457649448593
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-28 09:00:00,0.23092247304598956,-1.481808568850835,299.57832723672675,2.591803335454169
2024-08-28 12:00:00,-0.8917813713850073,0.28019870917288026,297.5606757063904,1.5265538125620028
2024-08-28 15:00:00,0.42080282365717275,0.4612086261326782,293.3419377254228,1.7627751730401853
2024-08-28 18:00:00,-0.9014641564219235,-1.5578754823220353,293.0825712671632,1.3417140491420905
2024-08-28 21:00:00,-1.0008817097710172,-0.3049716926682825,293.0939447920581,1.9161552966966102
2024-08-29 00:00:00,0.6348017333452776,-1.5204602002276184,295.3844872571486,2.0808227249617413
2024-08-29 03:00:00,1.4412186005928431,-0.14190979537455178,287.41021724887094,1.8969032693515762
2024-08-29 06:00:00,0.6860445710218424,-0.7867392888556219,291.03281752083427,1.8536420353210596
2024-08-29 09:00:00,1.354947170000747,-1.2382372826986323,290.3580522180937,1.3644916674350271
2024-08-29 12:00:00,-1.7113027597352117,-0.3612046299409645,292.5356107940392,2.5512082872844015
2024-08-29 15:00:00,0.36658546769857775,-0.884327061868069,298.3957458334606,2.0625992769334647
2024-08-29 18:00:00,0.6935016675540526,-1.5295232691191605,288.0507146514745,1.975995605242172
2024-08-29 21:00:00,-2.462795042901168,-0.16662630348458207,289.33305011829503,1.5204161715068163
2024-08-30 00:00:00,1.1143336019780765,-1.3837073965602287,292.4231572765217,1.8393840312380707
2024-08-30 03:00:00,-2.0407462600890107,1.2743597401254005,294.918717840626,1.776525654433911
2024-08-30 06:00:00,1.6079996326573067,-0.7408267248292414,293.70415208172903,2.162012821301144
2024-08-30 09:00:00,-1.7863937457358392,-0.13282577141054924,289.7671150975454,1.5683939830626572
2024-08-30 12:00:00,1.270131797308857,0.5049418626104315,297.43569952545215,1.9806309791372447
2024-08-30 15:00:00,0.3214684736167847,-1.7610139559280766,296.2302384794893,2.6555684861298054
2024-08-30 18:00:00,0.6430180600683291,-1.4673810013785293,291.9269209565241,2.1940679543532626
2024-08-30 21:00:00,0.5800019542265744,-1.6889389837836555,290.9794120444816,1.9736474669333108
2024-08-31 00:00:00,0.9837252083222332,-1.805973064152015,290.2499595339556,2.7101846944607475
2024-08-31 03:00:00,0.7842764772234573,0.9681013543453186,289.1035759942479,1.0583472143184651
2024-08-31 06:00:00,0.5397523536971476,0.11053596401595837,290.8857277895498,1.070595428552033
2024-08-31 09:00:00,0.804401277488167,-0.23809357852415958,292.16633954858185,2.2641196194063156
2024-08-31 12:00:00,-1.3233777338576875,2.3153134481525424,289.8860656674965,1.5194620288510758
2024-08-31 15:00:00,0.791067947286936,-0.3615713437111543,292.54534900641704,1.8973566562873252
2024-08-31 18:00:00,-0.41223910233860905,-0.8062275063565711,296.7844768299424,1.342451648783827
2024-08-31 21:00:00,1.103069954078027,-0.10929322490129521,300.4969898252661,1.7156973683866097
2024-09-01 00:00:00,0.4642765523942969,-0.8236935593533069,297.02878662700687,2.083678385959746
2024-09-01 03:00:00,-0.746539595831291,-1.2959789851972674,292.27590548724004,1.0108972263594584
2024-09-01 06:00:00,0.27286734098786136,-1.3545065029176526,290.6094336368545,0.9628517451117554
2024-09-01 09:00:00,1.81913842861272,-1.7536272928430459,299.20074683577604,1.9945032659763169
2024-09-01 12:00:00,-1.788785840857742,-0.8157515868447677,293.94362960396757,1.8125597653696754
2024-09-01 15:00:00,0.5475630642909488,-1.637819084220855,293.46841662597143,1.1689262578492938
2024-09-01 18:00:00,-1.64810984686264,-0.12068230684938223,297.38036408567825,2.7362645937184027
2024-09-01 21:00:00,0.07303379458686622,-1.2121377397983457,293.00864335534567,1.9242012230633334
2024-09-02 00:00:00,0.5602203676096837,-0.8812466661985295,291.79068911105253,1.6018431117679237
2024-09-02 03:00:00,-0.6626082582931733,-1.8725263746712206,299.1029669332786,1.7936122516381925
2024-09-02 06:00:00,0.5836316985637129,-1.513796487146682,291.65756583261833,1.6895904012523102
2024-09-02 09:00:00,1.083267566634115,-1.6410252103258418,290.14191104745316,3.8979434275653793
2024-09-02 12:00:00,0.9900902614292212,2.4325151691015012,292.53835104744655,1.3922971438359988
2024-09-02 15:00:00,0.9767985328822917,-1.2918403583623772,288.81179793654655,2.683529602822183
2024-09-02 18:00:00,-1.4836169057843058,-0.894291198880586,287.9241031580191,2.143836742057267
2024-09-02 21:00:00,0.6554257534615122,-1.0980164145190559,293.23393343655596,1.1912775570832423
2024-09-03 00:00:00,1.0511718903462746,-0.31223262531776375,292.1678275356472,2.520357674747953
2024-09-03 03:00:00,-1.1981151527785552,0.5187826880506567,297.8728878042852,1.3877497405404577
2024-09-03 06:00:00,0.7642868823352065,-0.4556072319211245,292.0649059748746,2.1658902946468963
2024-09-03 09:00:00,-0.1806738941248189,-0.3155749593947291,290.42972605049545,2.0111364762449035
2024-09-03 12:00:00,0.5816452195711731,-0.323286426104601,290.5682119753827,1.799262670911689
2024-09-03 15:00:00,-0.25575447971187365,0.5674717991939668,290.2142920420245,2.0200079728528437
2024-09-03 18:00:00,1.0121287377914445,-0.9493506520887224,290.90353943669754,1.3638758732387561
2024-09-03 21:00:00,0.8735536273382589,-0.855681477648916,289.2375537603037,2.314093686873121
2024-09-04 00:00:00,-1.0316045314669697,1.12994785742925,289.25085724862,1.6488938485446951
2024-09-04 03:00:00,1.3020714673931297,-1.3723916573660586,297.4277439510438,2.844163917449972
2024-09-04 06:00:00,-1.0637106081683396,0.9600965166190791,287.8741745623337,1.4298538228395141
2024-09-04 09:00:00,0.832055977180066,-0.6005534689681593,291.88491847015666,2.150305964602705
2024-09-04 12:00:00,-0.9029410151493071,-0.28974783243771823,289.319614037072,1.7491058952767444
2024-09-04 15:00:00,-0.5089317473312613,1.7668563334743654,298.20827419578075,1.0964181829803905
2024-09-04 18:00:00,0.9222691645165118,0.5354210156804483,298.6279012807344,1.6564863879757474
2024-09-04 21:00:00,0.42151005178018697,0.02710334253234377,289.13785862693004,1.7353554138830405
2024-09-05 00:00:00,1.0210938942917989,-0.47625845595024424,300.99869191953326,1.6513840932065684
2024-09-05 03:00:00,-0.7493997095638825,-0.76236853944328,297.9314938690938,3.2181269357870033
2024-09-05 06:00:00,0.7237772714664624,-1.7008519425464854,290.0964169478732,1.8899535919937471
2024-09-05 09:00:00,-1.8616303375264471,-1.3849856559875846,298.5836005173157,2.161099280460473
2024-09-05 12:00:00,-0.03567132808328881,-0.45449661307445255,291.36976556212124,2.083238532962442
2024-09-05 15:00:00,-1.0786040004056385,-0.2181233943539069,288.6304255725797,1.94884652485273
2024-09-05 18:00:00,0.68262283495616,-1.0113148017125106,290.223647208227,2.1449871268195086
2024-09-05 21:00:00,0.47108882328500606,-1.711696192607287,289.9722215918306,1.3725984965244171
2024-09-06 00:00:00,0.7948224965868984,-0.8299905586639335,291.4461243438968,1.3841497129314864
2024-09-06 03:00:00,-1.9860192838653066,-1.3589699333777,299.86656948357984,1.4804978202561094
2024-09-06 06:00:00,-0.9091188608120189,0.3860532583188258,289.0281600953651,2.069765497305458
2024-09-06 09:00:00,-2.4972932147244946,1.0625249113978885,298.32877168297796,1.0516343808821793
2024-09-06 12:00:00,0.32303893606642253,-1.4131702286098127,299.3914007032194,1.7625721639645031
2024-09-06 15:00:00,0.1674799502477008,-1.1542283967191143,296.96508310155866,2.0561638892339476
2024-09-06 18:00:00,1.4041931282712172,0.7888411859459107,293.02113655367594,2.1366705216852715
2024-09-06 21:00:00,1.670620522783259,-1.2935901069229288,293.15968140874384,1.3279161989640504
2024-09-07 00:00:00,0.7152281315090798,-1.4988031327145088,297.1292331201858,1.2183522008117131
2024-09-07 03:00:00,1.0103918687246676,-1.600026610819934,291.274504924853,2.618776474644781
2024-09-07 06:00:00,-0.3547456161043033,0.09687325669277282,293.1712611892718,2.386080705114366
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-28 09:00:00,2.0629308401484745,-2.11488396943354,290.215035734358,7.099582444355237
2024-08-28 12:00:00,1.4608160094104155,1.5827316619076544,287.31929981323344,7.0803688408568295
2024-08-28 15:00:00,2.0443376602364456,-2.249357638666311,295.1134053257159,6.290071463823916
2024-08-28 18:00:00,-2.153600417520631,-1.810584812096203,294.6229244372693,6.582994355140641
2024-08-28 21:00:00,-0.7643363843706109,-1.997081041866067,287.86675459410844,3.3497136322667673
2024-08-29 00:00:00,1.4766916273366444,-1.0259590557934872,289.5447546469644,5.647533074503981
2024-08-29 03:00:00,2.242770244491272,-1.4067056667065603,291.2929517786202,7.3743674721672905
2024-08-29 06:00:00,1.992817740915305,-2.6919870272951094,295.88820837017494,5.439554827341238
2024-08-29 09:00:00,2.1182132135057827,-1.442324162742024,294.8347724507073,9.327728314310173
2024-08-29 12:00:00,1.1172192690964802,-1.5965866450918413,294.95983527980576,5.487879951292061
2024-08-29 15:00:00,0.6675870520443814,-1.1743204511631393,289.5371937141339,5.442754322065314
2024-08-29 18:00:00,1.0865550580383654,-2.3989908789703884,289.7255143208551,7.478658801056186
2024-08-29 21:00:00,-1.520332635894308,-4.197290723635755,287.2275753599938,8.65895628627376
2024-08-30 00:00:00,1.9329808179353696,0.3565910907625406,288.38081694419816,6.472498113606776
2024-08-30 03:00:00,-2.1292898242524085,-0.9732663834092301,296.198260671155,8.175499879859885
2024-08-30 06:00:00,0.908051261679288,-2.57643376092859,287.90551873320493,5.341900925115476
2024-08-30 09:00:00,-2.845078798209672,0.10776078346163535,289.76783932822843,6.89510866974987
2024-08-30 12:00:00,-2.267266134190931,-2.479588923272553,289.82971194836216,6.160921668994505
2024-08-30 15:00:00,1.1332339250777685,-1.7441274953427863,289.5812755066152,5.9437608165234534
2024-08-30 18:00:00,1.8658127975054408,-1.7273952127936059,296.3617092548652,6.051656428897038
2024-08-30 21:00:00,-2.2031653775217848,-1.0067651378876263,287.8329026964488,5.788172216071946
2024-08-31 00:00:00,0.1497124295911496,-2.9791231158957934,290.26240812048417,4.981855185213038
2024-08-31 03:00:00,-0.10947135818756591,-1.5422460445938955,295.2732795274177,9.327212624519172
2024-08-31 06:00:00,-2.489491078963186,0.5844222808960784,287.64835242084405,7.027807297548544
2024-08-31 09:00:00,2.121343676382386,-1.2037233179231888,294.7313924039622,8.911710824418106
2024-08-31 12:00:00,-1.3147374851653828,0.0742825426112561,287.86721406098286,10.27371410272153
2024-08-31 15:00:00,1.951211656249285,-1.7950423199694123,287.41488919371085,7.254306016770527
2024-08-31 18:00:00,0.8902796702745532,-1.7357032321222414,294.70791905217175,8.407022415754072
2024-08-31 21:00:00,-3.490312279122224,0.07739377618700485,295.2029675818993,8.609361345526025
2024-09-01 00:00:00,1.7034795482802794,-2.11268217336454,288.58136072115224,8.961083963105146
2024-09-01 03:00:00,0.47890819801762236,-1.7650103686183023,294.5142537646025,4.964355002632872
2024-09-01 06:00:00,1.9999803073894586,-1.6349197778956004,287.39242937179046,9.866701776489618
2024-09-01 09:00:00,1.2240468414212418,-1.3565430084389425,296.8265140532705,8.480577524096637
2024-09-01 12:00:00,2.398720383005583,-1.8645766809186255,289.08830809155427,5.575330958730789
2024-09-01 15:00:00,1.9211457301554353,-2.1133796367155986,288.23362537960367,6.804474802741613
2024-09-01 18:00:00,0.17144449892865257,-2.3968369480333207,294.9097669042253,7.839724830437211
2024-09-01 21:00:00,2.149551548467366,-1.9931902904273795,290.5614399733439,7.342699682966547
2024-09-02 00:00:00,-2.6703753753563038,-0.8453228857475729,288.2000640271733,7.317819036820004
2024-09-02 03:00:00,-2.5120952961006853,-0.7329560695926831,288.4541829930582,4.982553861703893
2024-09-02 06:00:00,0.2959172644261716,-1.7157161206014808,292.71616393587703,8.822241418228014
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-29 03:00:00,1.9341627193440432,2.0474266353827,288.14999548332923,3.257729511427486
2024-08-29 06:00:00,-0.8989010753548765,0.31717608120523166,287.42607161490133,2.418656397808961
2024-08-29 09:00:00,0.022851924244113864,-1.6251100946473396,296.3665583645306,2.6819863348007154
2024-08-29 12:00:00,0.6289057941244091,0.4647738485050617,289.9261744588658,2.395919126291261
2024-08-29 15:00:00,0.6597830550274201,2.0549893130766814,290.9717807052924,3.0756957500523825
2024-08-29 18:00:00,1.9490672566339442,-1.88300183526986,293.15314649989364,1.9620857277696966
2024-08-29 21:00:00,1.1934589563098974,-1.0668899473574778,289.092719359202,2.0052239640068628
2024-08-30 00:00:00,1.4726728469293198,-0.9990474109342007,287.94901325604553,2.078509944887093
2024-08-30 03:00:00,1.2278245131743508,-0.1316806566188114,289.20413151813085,1.856091451715509
2024-08-30 06:00:00,0.09679879150399143,-1.8040516159836384,295.0725384351212,1.595593243722309
2024-08-30 09:00:00,-0.7818595661212533,2.7187841455580974,289.1589163493259,1.7650067764109652
2024-08-30 12:00:00,0.67571405261223,0.5292117028803898,291.41798341273125,3.373960774635307
2024-08-30 15:00:00,-1.668504285553122,-2.0129115038614946,289.65424188930393,1.73324760587374
2024-08-30 18:00:00,0.9592090337298098,-1.8984964620296838,289.8071073616517,2.9370192536768664
2024-08-30 21:00:00,0.5801030314864093,1.2403101980865952,291.7621931805408,0.7765299720334262
2024-08-31 00:00:00,0.49583314483823027,0.6305766944335733,290.3392932520775,1.8055114525297231
2024-08-31 03:00:00,1.9056805324624617,1.9325463116223223,297.37183402181995,2.0920480083870814
2024-08-31 06:00:00,-0.38693105396665345,0.3590071422003152,297.3494378595225,1.6011002526036355
2024-08-31 09:00:00,0.6079342923273147,1.8114843850985434,289.4871601029977,1.475455967586447
2024-08-31 12:00:00,2.0228388745751373,0.9780758261319179,295.4934433941317,1.5338792824517689
2024-08-31 15:00:00,-0.4062835858676231,0.8971980102850425,291.1715089807808,2.03661808660695
2024-08-31 18:00:00,0.9220144521501686,0.7497479515339145,289.3317138228851,2.0752140835110904
2024-08-31 21:00:00,1.6759286757273242,-1.6489797961191917,291.41171365375465,2.2263282846045023
2024-09-01 00:00:00,0.7780262738744884,-1.8822411362439966,296.63835970657897,1.8358052163476877
2024-09-01 03:00:00,0.5899503741527861,-0.4083535392101133,288.81584388663305,2.072205045514402
2024-09-01 06:00:00,1.5125378943167191,0.07223838030467335,288.91337509080455,1.610946116967277
2024-09-01 09:00:00,0.8792202375797621,0.6320907070578756,293.04189473014793,2.566459092614765
2024-09-01 12:00:00,1.9933552630156188,0.4001661292987336,288.4917702517224,1.895965116399954
2024-09-01 15:00:00,1.1640003803673622,0.2203678983798275,297.07572642811147,2.0658271365542795
2024-09-01 18:00:00,1.9353310481349792,-1.401147007663679,291.5710967592712,1.6224659868715228
2024-09-01 21:00:00,-0.19570066650928375,-1.770004795505689,296.49848575806385,1.7071831831569577
2024-09-02 00:00:00,2.1442699619803114,0.19268731635132955,295.4769378891052,2.107223572633911
2024-09-02 03:00:00,-1.449526089311442,0.5232368920850259,297.61125132971307,3.497967558905603
2024-09-02 06:00:00,1.0003592427872305,-1.6174292501142977,297.1012720507319,3.793473864077181
2024-09-02 09:00:00,2.039729570809632,1.3529970498984394,289.921639819234,3.9251988047340975
2024-09-02 12:00:00,0.9556205953004719,2.2085028077523776,291.28220667880305,1.1319615035833337
2024-09-02 15:00:00,-1.2402867480626747,0.5688419064996646,289.96428876110895,2.634947300605901
2024-09-02 18:00:00,1.4710705674446267,-1.740285835504961,296.84673441712107,1.453146323652404
2024-09-02 21:00:00,1.298241358444458,-2.358844924943666,296.71330519760033,3.6814510820883237
2024-09-03 00:00:00,-2.023450917441301,-2.076241544121496,288.44697792712753,2.094916242179426
2024-09-03 03:00:00,0.9412251155552132,-0.5859066001885319,287.6956712508906,0.7362912594117879
2024-09-03 06:00:00,0.5440100170526014,-1.916265800439665,289.38172608634875,2.1006892145579017
2024-09-03 09:00:00,-0.17558037568854945,1.0607113737084737,288.9612877140529,0.8829988104060167
2024-09-03 12:00:00,0.6533322110603692,2.065838505979488,291.7892260483139,2.381525807624122
2024-09-03 15:00:00,0.7446788320992932,1.059079194245183,298.6149376760061,1.6208597759477923
2024-09-03 18:00:00,0.6043708895150451,0.01633069461739961,288.4228174838157,1.5794111901628527
2024-09-03 21:00:00,1.6119543292186598,-2.0818175418353397,288.6330147987115,2.058510532898511
2024-09-04 00:00:00,1.9230552506246454,-2.71539859067799,292.1580045228105,1.8941711665371797
2024-09-04 03:00:00,2.0324859323059217,-2.073353841994292,295.23596043188525,2.1039850759338092
2024-09-04 06:00:00,1.38399669169823,0.4469528121030146,296.5811882532143,2.973310233606066
2024-09-04 09:00:00,-1.3041275712810356,1.8805381316211058,297.35416205000706,4.059025378515425
2024-09-04 12:00:00,-1.2192568298261404,2.3160715583513563,288.52861602133544,1.4943028710875763
2024-09-04 15:00:00,0.9710675709576718,-0.48164652108063644,291.0057540504441,2.282754265756122
2024-09-04 18:00:00,-0.3158465922444819,1.24872958536314,290.28295290629796,1.745716600414681
2024-09-04 21:00:00,1.6988779912632759,-1.5580577989597297,295.42500095544415,2.1395668198707383
2024-09-05 00:00:00,0.6080427800007644,1.7114709267661248,294.80242846991297,2.7756263456656303
2024-09-05 03:00:00,2.289543301925949,-0.6131957545629658,296.65741685770064,5.132318463618492
2024-09-05 06:00:00,0.8472831355592078,-0.995088821828902,298.29764412929103,1.4790438673121538
2024-09-05 09:00:00,0.6286220571323562,-1.1935647987322806,288.7909835632495,2.02146338224217
2024-09-05 12:00:00,1.804411461906354,-1.8171016662623056,299.5326554201471,1.4106025940558355
2024-09-05 15:00:00,0.8364093325980244,-2.020082753901466,292.7925478737362,3.5155002898327425
2024-09-05 18:00:00,0.8251266145600233,0.7176287276165602,291.5758355305907,2.6491059455992083
2024-09-05 21:00:00,1.35914466927416,0.5371953499382657,299.13967275983424,2.210015856781729
2024-09-06 00:00:00,0.9848037794566709,-1.944729237776436,288.8856860854642,1.3340311817407222
2024-09-06 03:00:00,1.0425192217282653,2.5980767195511545,287.49015438397504,2.9177603675037913
2024-09-06 06:00:00,1.0041396209464484,1.664551306267907,290.13037905064675,1.9791073915847597
2024-09-06 09:00:00,-1.3526299065156135,1.1626967411661902,298.99927390126527,4.918781065262152
2024-09-06 12:00:00,0.739546530624897,0.9200042102060487,290.4125327854239,1.5597872560525543
2024-09-06 15:00:00,2.166877124084632,-0.8895289074921636,293.22672139244105,2.7991823675568446
2024-09-06 18:00:00,1.0827681485755856,-2.8194223361079254,289.77473790833113,3.4931176363112195
2024-09-06 21:00:00,0.951865252758237,1.0411326055767762,289.5477288908776,4.153087801993408
2024-09-07 00:00:00,-0.2755642845746282,-3.2428658181262553,296.9507686736263,2.175826509976799
2024-09-07 03:00:00,2.052622913538025,0.38498907591854825,291.5814783136695,2.119937670789903
2024-09-07 06:00:00,0.26330233462192515,2.396085279188398,297.2337680968236,1.2899490358373693
2024-09-07 09:00:00,-0.7416356748908634,0.6887812480532833,293.6177648017216,2.273216084653875
2024-09-07 12:00:00,2.564442721224635,0.5757472811519581,294.16237356342174,1.6893531989094968
2024-09-07 15:00:00,1.9450865935391661,0.6226742870775366,289.127946656149,3.06223591111044
2024-09-07 18:00:00,-2.113595828866642,0.8935422237044031,291.9874816594846,2.2189595312433785
2024-09-07 21:00:00,0.8666773934886014,-1.8246643439563024,288.7374718994268,1.5020001675922194
2024-09-08 00:00:00,1.864129753533832,-2.5118266688440025,288.62409132779607,2.3343511841955107
Timestamp,wind_u-surface,wind_v-surface,temp-surface,gust-surface
2024-08-29 06:00:00,0.44473550797799616,-1.8399729385061565,288.3810441717871,6.526983059975657
2024-08-29 09:00:00,1.594901230178738,0.49672086120682024,289.2700975528624,6.9266861380833245
2024-08-29 12:00:00,-2.066564608592588,-2.4460155725081507,292.908278581288,6.400634618883912
2024-08-29 15:00:00,1.4427775298393037,1.499570931659319,290.4298965282377,6.975344938641619
2024-08-29 18:00:00,0.6498607045584474,-3.2565149195286405,289.1898740939444,8.038877340770373
2024-08-29 21:00:00,-1.0034468239249905,-4.125537696871223,287.57940116869776,6.988907503394425
2024-08-30 00:00:00,2.1831056040613177,-2.2623523271773878,289.8875193062578,9.028362188730684
2024-08-30 03:00:00,-0.08326263507012964,-2.3489149832270972,290.2896536673337,7.944197871703639
2024-08-30 06:00:00,2.137550264501527,-1.7950418071122547,295.3523360864341,6.150644471727543
2024-08-30 09:00:00,2.18147380303015,-3.1919422101865984,296.11997793576563,4.4431129221087575
2024-08-30 12:00:00,-1.4455790899859324,-1.8302301807725383,287.1538380231449,9.02557181953537
2024-08-30 15:00:00,-1.9560252987998363,-1.4733524447818434,294.91993307799,5.494359602531789
2024-08-30 18:00:00,2.0538195884302293,-0.40819813102264985,290.05022498524573,7.637880110456992
2024-08-30 21:00:00,2.080732276777234,-2.0200549269815595,288.6860830016952,9.029103380548415
2024-08-31 00:00:00,1.8899127422957407,-2.040572678783488,294.3543505169949,5.684160764355144
2024-08-31 03:00:00,2.270274020457278,-1.387783181288352,294.91279489357663,4.773765443281943
2024-08-31 06:00:00,-1.944421126960678,-2.11058528031547,295.33900190803246,5.047751047175383
2024-08-31 09:00:00,1.4943761375469984,-2.0182352223787934,287.9433624010934,5.95974455100764
2024-08-31 12:00:00,-0.3602586761612971,-1.2237416539681338,295.62502845830124,5.297837886328979
2024-08-31 15:00:00,-0.8732869739422728,-1.2076003345191795,290.2350502279937,6.013098713282722
2024-08-31 18:00:00,1.3980506896015399,-2.062773665693823,289.4245773285979,5.770942492038056
2024-08-31 21:00:00,1.5029362043803791,-1.2420232588687325,295.4841304318698,3.572125337420331
2024-09-01 00:00:00,1.9900054033832064,-0.9619670901844749,293.825981357959,7.17906368986986
2024-09-01 03:00:00,2.092486287277083,-1.6640497955528297,297.09619953035,2.64664458288373
2024-09-01 06:00:00,-1.3403132686150658,0.5523905775932977,291.17780853568564,8.057911644926099
2024-09-01 09:00:00,1.1451979495642686,-1.1195513691280434,288.76158302914405,7.790484654342757
2024-09-01 12:00:00,0.7248361526262588,-2.4885537458622387,290.2835949461228,6.268151403075164
2024-09-01 15:00:00,-1.7999558470601864,1.5999265383983117,287.85679636403086,4.851858409742103
2024-09-01 18:00:00,1.348241821452971,-1.7308783167386028,288.99117174897685,5.308257005426993
2024-09-01 21:00:00,-1.8686461107425654,-2.7700012827711706,295.2853719298571,8.463430768176947
2024-09-02 00:00:00,2.1855985283861714,-1.4052423192069838,294.9237777424537,6.9780419622291
2024-09-02 03:00:00,1.997294264517192,-2.2153775204388584,288.13566908257854,6.846259135774874
2024-09-02 06:00:00,1.7492475373196021,-0.29621030939682985,288.1766637255817,9.980457335170808
2024-09-02 09:00:00,1.5009149302152152,-1.3607422175220933,296.73904072281545,7.539600566847401
2024-09-02 12:00:00,1.1845888686047905,-1.5607325709693853,290.2436111299333,4.939566063552393
2024-09-02 15:00:00,0.3700575843278077,2.024750905936302,288.43185770405927,5.260871722990279
2024-09-02 18:00:00,-1.9321634920733253,-1.6518953544310908,288.23341353960217,7.111677519497072
2024-09-02 21:00:00,-1.9098458559896296,-0.3073114136609264,293.1439314614812,6.343696911943724
2024-09-03 00:00:00,1.5177211035798328,-2.2912238861362653,289.8864096996457,7.16344883367918
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment