Closed stiansorum closed 19 hours 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
@birgitterf, could you please have a look?
New files are available in wind_hourly_v2
Hi @stiansorum, is it working now?
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
You only need to update metocean-api in your PC using:
$ git pull
That did the trick - all good here now. Thank you for the quick help and solution!
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)