MET-OM / metocean-api

Extract time series of metocean data from global/regional/coastal hindcasts/reanalysis
GNU Lesser General Public License v2.1
11 stars 8 forks source link

Missing data in NORA3? #50

Closed stiansorum closed 19 hours ago

stiansorum commented 1 week ago

Hi,

I'm downloading 30 years of wind and wave data from NORA3 at a given location. Most of the download works fine, but I cannot download the last four hours of wind data for November 2023. Do you have any advice for how this data can be accessed?

Code used for "downloading" the data missing data:


from metocean_api import ts

lat_pos = 57.4000 lon_pos = -1.3000 start_date = '2023-11-30' end_date = '2023-11-30'

df_ts = ts.TimeSeries(lon=lon_pos, lat=lat_pos,start_time=start_date, end_time=end_date , product='NORA3_wind_sub') df_ts.import_data(save_csv=True, use_cache= True)

KonstantinChri commented 1 week ago

Hi @stiansorum

Thanks for informing us about this missing data. These timestamps are missing from the arome3kmwind_1hr_202311.nc at https://thredds.met.no/thredds/catalog/nora3_subset_atmos/wind_hourly/catalog.html

image

@birgitterf, could you please have a look?

birgitterf commented 1 week ago

New files are available in wind_hourly_v2

KonstantinChri commented 5 days ago

Hi @stiansorum, is it working now?

stiansorum commented 4 days ago

I'm still not seeing the missing data in my downloads. Do I need to update anything (e.g. the product) to get access to the updated data? I've made sure to delete the files in the cache folder, so I should be downloading new data

KonstantinChri commented 4 days ago

You only need to update metocean-api in your PC using: $ git pull

stiansorum commented 4 days ago

That did the trick - all good here now. Thank you for the quick help and solution!