Felix here Met...... i really enjoyed this video . thank you very much ... starting from .. Snippet 001
@meteodata3 жыл бұрын
Glad you found it useful, Felix
@Oceansteve3 жыл бұрын
Really interesting video... muich appreicated
@meteodata3 жыл бұрын
Glad you found it helpful.
@XinhLe3 жыл бұрын
surprisingly great
@meteodata3 жыл бұрын
Glad you found it helpful.
@nanaadjoa67074 жыл бұрын
Explicitly explained. Life just got easier with metpeptalk.
@meteodata4 жыл бұрын
Glad you enjoyed it. Have a great time coding.
@macegamma4314 жыл бұрын
Short sweet n Great.
@meteodata4 жыл бұрын
Glad this tutorial was beneficial to you. Do subscribe and click on the notification bell to be notified of any new post.
@muhbayquni424 жыл бұрын
So clearly, you explained
@meteodata4 жыл бұрын
Glad you found it useful and informative.
@ejeefe48162 жыл бұрын
Please I am new to coding on anaconda phython..................Is the Xarray a modified Pandas or they are two different things?
@meteodata2 жыл бұрын
Xarray is different from pandas. It has pandas as a dependency, and utilizes some pandas syntaxes. Xarray is purely devoted to handling multi-dimensional data easily.
@ejeefe48162 жыл бұрын
@@meteodata OK. I will use this approach to see if I can apply it to the climate data I sent you. I want to see the time series in times of the hours, seperate each of the data and also construct the plots
@subhambanerjee30122 жыл бұрын
Sir could you please tell how you installed spyder because when I want to import xarray in spyder, it says no module available? I have installed xarray and I even tried creating a new spyder environment but it still didn't work.
@meteodata2 жыл бұрын
you can install the Anaconda navigator and then you get the Spyder installed.
@jacobagyekum39154 жыл бұрын
Nice nice!!
@meteodata4 жыл бұрын
Glad you enjoyed it. Have a great time coding.
@marcusmitchelle14882 жыл бұрын
as you have your data in years, i have data in days. so while using 'time.year' in line 26 im getting an error. so how to solve this problem. Also i want to plot these graphs for specified JJAS in specific year. so how to plot these??
@pedroregoto51583 жыл бұрын
Very nice video, congratz! Is there a way to plot for the whole domain (not for one point) only the slope of the trend, like a spatial trend?
@meteodata3 жыл бұрын
Glad you found the information useful. Kindly check the attached link for information in that regard. kzbin.info/www/bejne/sGakqpmKqK-MgdE&lc=Ugx-zW6QCS0T7Y7_6Z14AaABAg
@agumasekindie76723 жыл бұрын
interesting. Thank you. Could you provide how to calculate drought indices like SPI, SPEI..
@meteodata3 жыл бұрын
The team will put it into consideration. Thanks for following through with our tutorial content.
@meteodata3 жыл бұрын
kzbin.info/www/bejne/sIq3Zommhrx9d7M
@DianaHydra3 жыл бұрын
Hello, I am new to coding and workin along with this tutorial using an ERA5-Land monthly average dataset. It worked fine up to SLS.plot() but is not working for ASA. Any chance of some help?
@meteodata3 жыл бұрын
Hello Diana, I have seen your data. The minor challenge you have is with the co-ordinate name. In your data, the 'lat' is called 'latitude', and 'lon' is 'longitude', so in subsetting, you need to type the full name for the coordinate as shown below. ASA=Data_2_use.sel(longitude=np.arange(-1.5,1.5,0.1),latitude=np.arange(5,15,0.1),method='nearest') Hope this works!!!
@codenust27533 жыл бұрын
Thank you. How can we calculate mann-kendal test on all grid points and make a spatial plot? Thank you.
@meteodata3 жыл бұрын
Find tutorial on spatial Mann-Kendall trend test here kzbin.info/www/bejne/b6PQe4SofpyKbLs Hope it proves useful.
@codenust27533 жыл бұрын
@@meteodata Thank you so much for creating this tutorial.
@wayfoward_ Жыл бұрын
Good day Sir can a timeseries be done for two datas on the same plot?
@meteodata Жыл бұрын
Yes. With your plot axes defined, it's possible to refer your plots to that axis. For example: fig = PLT.figure() ax = fig.add_subplot() data1.plot( ax = ax ) data2.plot( ax = ax )
@kelvinansah359 Жыл бұрын
Great work! but i cant have access to the data. the link posted here is not working. can please help. thank you
@meteodata11 ай бұрын
Should work now. It was under maintenance at time of earlier search.
@Anurag-sq4yc3 жыл бұрын
very informative video and can you say how to merge netcdf files in xarray
@meteodata3 жыл бұрын
Can you elaborate, please.
@bervelyvan4 жыл бұрын
Thank you sir
@meteodata4 жыл бұрын
Glad you enjoyed it. Have a great time coding.
@codenust27533 жыл бұрын
Can we make a normal distribution from this time series to find out mean, variance, skew etc. Thank you.
@meteodata3 жыл бұрын
Find more info on that here. kzbin.info/www/bejne/l6bZYYawmZdmrrM
@codenust27533 жыл бұрын
@@meteodata This is super helpful. Thank you so much!
@meteodata3 жыл бұрын
@@codenust2753 Glad it proved useful.
@marianosei15164 жыл бұрын
How about adding a trendline to the timeseries?
@meteodata4 жыл бұрын
@Marian Osei Using the Ann_avg as an example data, you set x as the years and y as the data points. Thereafter, you attempt the following: import matplotlib.pyplot as plt plt.plot(np.unique(Ann_avg.year.values), np.poly1d(np.polyfit(Ann_avg.year.values, Ann_avg.values, 1))(np.unique(Ann_avg.year.values)))
@marianosei15164 жыл бұрын
@@meteodata Great thanks
@meteodata4 жыл бұрын
@@marianosei1516 Glad it proved useful. Cheers!!!
@jacobagyekum39154 жыл бұрын
Waiting patiently for spatial analyses 😅
@meteodata4 жыл бұрын
Jacob Agyekum, it's bound to go online in a couple of days. Thanks for your comment.